/* ================================================
   RÁDIO VIDA EM JESUS — style.css
   ================================================ */
:root {
  --crimson:  #8B0000;
  --crimson2: #A50000;
  --crimson3: #6d0000;
  --gold:     #D4A017;
  --gold2:    #f0bc2e;
  --blue:     #1565C0;
  --blue2:    #1976D2;
  --dark:     #111111;
  --dark2:    #1e1e1e;
  --surface:  #ffffff;
  --surface2: #f7f7f7;
  --border:   #e8e8e8;
  --text:     #222222;
  --text2:    #555555;
  --text3:    #888888;
  --radius:   14px;
  --rsm:      8px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --ph:       68px;   /* player height */
  --nh:       46px;   /* nav height */
  --top:      calc(var(--ph) + var(--nh));
  --fd:       'Cinzel Decorative', serif;
  --fb:       'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--top); }
body { font-family: var(--fb); background: #1c1c1c; color: var(--text); padding-top: var(--top); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: var(--fb); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 3px; }

/* ─── PLAYER ─── */
#top-player {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--ph);
  background: linear-gradient(135deg, #080000 0%, #2a0000 50%, #080000 100%);
  border-bottom: 3px solid var(--gold);
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.player-inner {
  max-width: 1300px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 14px; padding: 0 18px;
}
.logo-player { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cross-glow {
  font-size: 30px; color: var(--gold); line-height: 1;
  text-shadow: 0 0 16px rgba(212,160,23,.8);
  animation: cpulse 3s ease-in-out infinite;
}
@keyframes cpulse { 0%,100%{text-shadow:0 0 10px rgba(212,160,23,.5)} 50%{text-shadow:0 0 26px rgba(212,160,23,1)} }
.logo-texts { display: flex; flex-direction: column; }
.logo-name   { font-family: var(--fd); font-size: 10px; color: var(--gold); letter-spacing: .5px; line-height: 1.3; }
.logo-slogan { font-size: 9px; color: rgba(255,255,255,.45); }
.player-zone { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.play-btn {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), #b8850f);
  border: 2px solid rgba(255,255,255,.15);
  color: var(--dark); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; box-shadow: 0 3px 14px rgba(212,160,23,.4);
}
.play-btn:hover { transform: scale(1.12); }
.play-btn.playing { background: linear-gradient(135deg, #e74c3c, #9b1414); }
.track-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.live-dot { color: #ff4444; font-size: 10px; animation: blink 1.4s infinite; margin-right: 3px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }
.live-lbl { font-size: 10px; font-weight: 900; color: #ff6666; letter-spacing: 1.5px; }
#trackStatus { color: rgba(255,255,255,.8); font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
.vol-ctrl { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.vol-ctrl input[type=range] { width: 80px; accent-color: var(--gold); cursor: pointer; }
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; padding: 6px; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: all .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── NAV ─── */
#main-nav {
  position: fixed; top: var(--ph); left: 0; right: 0;
  height: var(--nh); overflow: hidden;
  background: linear-gradient(90deg, #0d47a1 0%, var(--blue2) 60%, #0d47a1 100%);
  z-index: 999; box-shadow: 0 3px 16px rgba(0,0,0,.35);
}
.nav-inner { max-width: 1300px; margin: 0 auto; height: 100%; }
#nav-list { list-style: none; display: flex; height: 100%; overflow-x: auto; scrollbar-width: none; padding: 0 10px; }
#nav-list::-webkit-scrollbar { display: none; }
.nl {
  display: flex; align-items: center; height: 100%;
  padding: 0 12px; color: rgba(255,255,255,.8);
  font-size: 11.5px; font-weight: 800; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .2px;
  border-bottom: 3px solid transparent; transition: all .18s; position: relative;
}
.nl::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold2); transform:scaleX(0); transition:transform .2s; }
.nl:hover::after, .nl.active::after { transform: scaleX(1); }
.nl:hover, .nl.active { color: var(--gold2); }

/* ─── HERO ─── */
.hero {
  min-height: 300px;
  background: radial-gradient(ellipse at 20% 50%, rgba(139,0,0,.9) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(139,0,0,.7) 0%, transparent 60%),
              linear-gradient(160deg, #080000 0%, #3a0000 40%, #180000 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ptcl {
  position: absolute; width: 4px; height: 4px; background: var(--gold2);
  border-radius: 50%; opacity: 0;
  animation: floatUp 6s infinite;
}
.ptcl:nth-child(odd) { background: rgba(255,255,255,.3); width: 2px; height: 2px; }
.ptcl:nth-child(1){left:7%;animation-delay:.5s;animation-duration:7s}
.ptcl:nth-child(2){left:14%;animation-delay:1s;animation-duration:5s}
.ptcl:nth-child(3){left:21%;animation-delay:1.5s;animation-duration:9s}
.ptcl:nth-child(4){left:28%;animation-delay:2s;animation-duration:6s}
.ptcl:nth-child(5){left:35%;animation-delay:.8s;animation-duration:8s}
.ptcl:nth-child(6){left:50%;animation-delay:1.2s;animation-duration:7s}
.ptcl:nth-child(7){left:57%;animation-delay:.3s;animation-duration:5s}
.ptcl:nth-child(8){left:64%;animation-delay:1.8s;animation-duration:9s}
.ptcl:nth-child(9){left:71%;animation-delay:.7s;animation-duration:6s}
.ptcl:nth-child(10){left:78%;animation-delay:2.2s;animation-duration:8s}
.ptcl:nth-child(11){left:85%;animation-delay:1s;animation-duration:5s}
.ptcl:nth-child(12){left:92%;animation-delay:1.5s;animation-duration:7s}
.ptcl:nth-child(13){left:44%;animation-delay:.4s;animation-duration:6s}
.ptcl:nth-child(14){left:3%;animation-delay:2s;animation-duration:8s}
@keyframes floatUp { 0%{transform:translateY(0) scale(0);opacity:0} 20%{opacity:.8} 100%{transform:translateY(-130px) scale(1);opacity:0} }

.hero-cnt { position: relative; text-align: center; padding: 50px 20px; z-index: 1; }
.hero-cross { font-size: 60px; color: var(--gold2); text-shadow: 0 0 30px rgba(212,160,23,.8); display: block; margin-bottom: 10px; animation: crossFloat 4s ease-in-out infinite; }
@keyframes crossFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-title { font-family: var(--fd); font-size: clamp(20px,5vw,50px); color: var(--gold2); text-shadow: 0 2px 20px rgba(212,160,23,.4); letter-spacing: 2px; margin-bottom: 10px; }
.hero-sub { color: rgba(255,255,255,.8); font-size: clamp(13px,2vw,17px); font-weight: 600; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero { background: linear-gradient(135deg, var(--gold), #b8850f); border: none; padding: 13px 30px; border-radius: 50px; font-size: 14px; font-weight: 800; color: var(--dark); cursor: pointer; transition: all .2s; box-shadow: 0 4px 20px rgba(212,160,23,.35); }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,160,23,.55); }
.btn-hero.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: white; box-shadow: none; }
.btn-hero.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); }

/* ─── LAYOUT ─── */
.page-wrap { max-width: 1300px; margin: 0 auto; padding: 28px 18px 40px; }
.content-grid { display: grid; grid-template-columns: 1fr 290px; gap: 26px; }

/* ─── SECTIONS ─── */
.card-sec { background: var(--surface); border-radius: var(--radius); padding: 24px; margin-bottom: 26px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.sec-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sec-hd h2 { font-size: 17px; font-weight: 900; color: var(--crimson); white-space: nowrap; }
.sec-bar { flex: 1; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; }

/* ─── TOP 10 ─── */
.top10-list { display: flex; flex-direction: column; gap: 9px; }
.top10-item { display: flex; align-items: center; gap: 13px; padding: 11px 13px; background: var(--surface2); border-radius: 10px; transition: all .18s; border: 1px solid transparent; }
.top10-item:hover { background: #fff3f3; border-color: rgba(139,0,0,.12); transform: translateX(4px); }
.top10-rank { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #b8850f); color: var(--dark); font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.top10-rank.r1 { background: linear-gradient(135deg, #FFD700, #FFA500); font-size: 16px; box-shadow: 0 3px 12px rgba(255,165,0,.4); }
.top10-rank.r2 { background: linear-gradient(135deg, #C0C0C0, #909090); }
.top10-rank.r3 { background: linear-gradient(135deg, #CD7F32, #8B4513); }
.top10-info { flex: 1; min-width: 0; }
.top10-info strong { display: block; font-size: 14px; color: var(--dark); font-weight: 800; }
.top10-info span   { font-size: 12px; color: var(--text3); }
.btn-sample { background: var(--crimson); color: white; border: none; border-radius: 50%; width: 34px; height: 34px; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; transition: all .18s; }
.btn-sample:hover { background: var(--crimson2); transform: scale(1.12); }
.no-audio { font-size: 16px; opacity: .2; flex-shrink: 0; width: 34px; text-align: center; }

/* ─── VÍDEOS ─── */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 16px; }
.vid-card { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.1); cursor: pointer; transition: all .2s; border: 1px solid var(--border); }
.vid-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.vid-thumb { position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; background: #000; }
.vid-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vid-card:hover .vid-thumb img { transform: scale(1.05); }
.vid-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; font-size: 42px; color: white; opacity: 0; transition: opacity .2s; }
.vid-card:hover .vid-overlay { opacity: 1; }
.vid-meta { padding: 10px 12px; background: white; }
.vid-meta strong { font-size: 13px; color: var(--dark); font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.35; }
.vid-meta p { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* ─── NOTÍCIAS ─── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.news-card { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.08); cursor: pointer; transition: all .2s; border: 1px solid var(--border); }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.news-img { width: 100%; height: 160px; object-fit: cover; }
.news-ph  { width: 100%; height: 160px; background: linear-gradient(135deg, var(--crimson), var(--crimson3)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.news-body { padding: 13px; background: white; }
.news-cat  { font-size: 10px; font-weight: 900; color: var(--crimson); text-transform: uppercase; letter-spacing: 1px; }
.news-body h3 { font-size: 14px; font-weight: 800; color: var(--dark); margin: 4px 0 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-body p   { font-size: 12px; color: var(--text2); line-height: 1.45; }
.news-body time { font-size: 11px; color: var(--text3); margin-top: 6px; display: block; }

/* ─── FORMULÁRIOS ─── */
.form-card { display: flex; flex-direction: column; gap: 13px; }
.frm-row2  { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fld { display: flex; flex-direction: column; gap: 5px; }
.fld label { font-size: 12px; font-weight: 800; color: var(--text2); text-transform: uppercase; letter-spacing: .4px; }
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%; padding: 11px 13px;
  border: 2px solid var(--border); border-radius: var(--rsm);
  font-size: 14px; color: var(--text);
  background: var(--surface2);
  transition: border-color .18s, box-shadow .18s;
}
.form-card input:focus,
.form-card textarea:focus {
  outline: none; border-color: var(--blue2);
  background: white; box-shadow: 0 0 0 3px rgba(25,118,210,.1);
}
.form-card input.invalid,
.form-card textarea.invalid { border-color: var(--crimson2); }
textarea { resize: vertical; min-height: 80px; }
.honeypot { display: none !important; }
.captcha-box {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: #f0f4ff; border: 2px dashed #c5d3f0;
  border-radius: var(--rsm); padding: 10px 13px;
  font-size: 14px; font-weight: 800; color: var(--dark);
}
.cp-q { color: var(--blue); }
.btn-enviar {
  background: linear-gradient(135deg, var(--crimson), var(--crimson3));
  color: white; border: none; padding: 13px;
  border-radius: var(--rsm); font-size: 15px; font-weight: 800;
  cursor: pointer; transition: all .18s; letter-spacing: .3px;
  box-shadow: 0 3px 12px rgba(139,0,0,.3);
}
.btn-enviar:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,0,0,.45); }
.btn-enviar:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.frm-msg { font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 6px; display: none; }
.frm-msg.ok  { background: #e8f5e9; color: #2e7d32; display: block; }
.frm-msg.err { background: #ffebee; color: #c62828; display: block; }

/* ─── MURAL ─── */
.mural-posts { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.mural-item  { display: flex; gap: 12px; padding: 13px; background: var(--surface2); border-radius: 10px; border-left: 4px solid var(--gold); }
.mural-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--crimson), var(--crimson3)); color: white; font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mural-cnt { flex: 1; min-width: 0; }
.mural-hd  { display: flex; justify-content: space-between; margin-bottom: 5px; flex-wrap: wrap; gap: 4px; }
.mural-hd strong { font-size: 14px; color: var(--blue); }
.mural-hd time   { font-size: 11px; color: var(--text3); }
.mural-cnt p { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ─── PROGRAMAÇÃO ─── */
.prog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }
.prog-dia    { background: var(--surface2); border-radius: 10px; overflow: hidden; }
.prog-dia-hd { background: linear-gradient(135deg, var(--blue), var(--blue2)); color: white; font-weight: 900; font-size: 13px; padding: 8px 13px; text-transform: uppercase; letter-spacing: .5px; }
.prog-item   { padding: 9px 13px; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.prog-item:last-child { border-bottom: none; }
.prog-hora   { font-size: 11px; color: var(--crimson); font-weight: 800; white-space: nowrap; margin-top: 2px; }
.prog-item strong { font-size: 13px; color: var(--dark); display: block; }
.prog-item small  { font-size: 11px; color: var(--text3); }

/* ─── CONTATO ─── */
.contato-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 4px; }
.ct-item { display: flex; align-items: center; gap: 8px; background: var(--surface2); border-radius: 8px; padding: 9px 13px; font-size: 14px; color: var(--text); border: 1px solid var(--border); transition: all .16s; }
.ct-item:hover { border-color: var(--blue2); background: #f0f4ff; }

/* ─── SIDEBAR ─── */
.col-side { display: flex; flex-direction: column; gap: 20px; }
.side-card { background: var(--surface); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.side-ttl  { font-size: 14px; font-weight: 900; color: var(--crimson); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.side-empty { font-size: 13px; color: var(--text3); font-style: italic; }
.side-sobre { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* Enquete */
.enq-pergunta { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.45; }
.enq-form { display: flex; flex-direction: column; gap: 8px; }
.enq-opt  { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; padding: 7px 10px; border-radius: 7px; transition: background .14s; }
.enq-opt:hover { background: var(--surface2); }
.enq-opt input[type=radio] { accent-color: var(--crimson); }
.btn-votar { width: 100%; background: var(--blue); color: white; border: none; padding: 9px; border-radius: 7px; font-weight: 800; font-size: 13px; margin-top: 4px; cursor: pointer; transition: background .18s; }
.btn-votar:hover { background: var(--blue2); }
.enq-resultados { display: flex; flex-direction: column; gap: 10px; }
.enq-res     { display: flex; flex-direction: column; gap: 3px; }
.enq-res-lbl { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; }
.enq-bar  { height: 8px; background: #e0e0e0; border-radius: 4px; overflow: hidden; }
.enq-fill { height: 100%; background: linear-gradient(90deg, var(--crimson), var(--gold)); border-radius: 4px; transition: width .6s ease; }
.enq-res small { font-size: 11px; color: var(--text3); }
.enq-total { font-size: 12px; font-weight: 700; color: var(--text3); text-align: right; margin-top: 4px; }

/* Banners */
.side-banner { padding: 0; overflow: hidden; }
.banner-img  { width: 100%; height: auto; }
.side-banner-ph { background: repeating-linear-gradient(45deg,#f8f8f8,#f8f8f8 8px,#efefef 8px,#efefef 16px); }
.banner-ph   { text-align: center; padding: 24px 16px; }
.banner-ph span { font-size: 32px; }
.banner-ph p { font-size: 14px; font-weight: 800; color: var(--text3); margin: 6px 0 2px; }
.banner-ph small { font-size: 12px; color: var(--text3); }

/* Contatos sidebar */
.side-contatos { display: flex; flex-direction: column; gap: 8px; }
.side-ct { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text); padding: 7px 10px; border-radius: 7px; border: 1px solid var(--border); transition: all .16s; }
.side-ct:hover { border-color: var(--blue2); background: #f0f4ff; }
.side-ct.wpp:hover { border-color: #25d366; background: #f0fff4; color: #1a7d3d; }

/* ─── MODAIS ─── */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 9000; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal.open { display: flex; }
.modal-box { background: white; border-radius: var(--radius); padding: 28px; max-width: 700px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,.45); animation: mpop .22s cubic-bezier(.34,1.56,.64,1); }
@keyframes mpop { from{transform:scale(.88);opacity:0} to{transform:scale(1);opacity:1} }
.modal-sm  { max-width: 420px; }
.modal-vid { max-width: 760px; padding: 20px; }
.modal-lg  { max-width: 700px; }
.modal-close { position: absolute; top: 14px; right: 14px; background: var(--surface2); border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; z-index: 1; }
.modal-close:hover { background: #e0e0e0; }
.modal-cat  { font-size: 11px; font-weight: 900; color: var(--crimson); text-transform: uppercase; letter-spacing: 1px; }
.modal-box h2 { font-size: 20px; font-weight: 900; color: var(--dark); margin: 6px 0; }
.modal-box h3 { font-size: 16px; font-weight: 900; color: var(--dark); }
.modal-date { font-size: 12px; color: var(--text3); display: block; margin-bottom: 14px; }
.modal-body { font-size: 14px; line-height: 1.8; color: var(--text); }
.modal-body img { border-radius: 8px; margin: 12px 0; width: 100%; }
.modal-sub  { font-size: 13px; color: var(--text2); margin: 2px 0 0; }
.yt-wrap { position: relative; padding-top: 56.25%; margin-top: 14px; }
.yt-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 8px; }

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--dark2); color: white; padding: 12px 20px; border-radius: 9px; font-size: 14px; font-weight: 700; z-index: 9999; max-width: 320px; transform: translateY(80px); opacity: 0; transition: all .28s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.ok  { border-left: 4px solid #4caf50; }
.toast.err { border-left: 4px solid var(--crimson2); }

/* ─── FOOTER ─── */
footer { background: linear-gradient(135deg, #060000, #1e0000); border-top: 3px solid var(--gold); color: rgba(255,255,255,.7); font-size: 13px; }
.footer-inner { max-width: 1300px; margin: 0 auto; padding: 28px 18px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-cross { font-size: 30px; color: var(--gold); }
.footer-brand strong { display: block; font-family: var(--fd); font-size: 13px; color: var(--gold); }
.footer-brand p { font-size: 12px; }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-nav a:hover { color: var(--gold2); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; }
.admin-lnk { color: rgba(212,160,23,.5); font-weight: 700; transition: color .15s; }
.admin-lnk:hover { color: var(--gold2); }

/* ─── RESPONSIVO ─── */
@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; }
  .col-side { order: -1; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); }
}
@media (max-width: 680px) {
  :root { --ph: 58px; --nh: 42px; }
  .logo-player { display: none; }
  .burger { display: flex; }
  .vol-ctrl { display: none; }
  #trackStatus { max-width: 150px; font-size: 11px; }
  #main-nav { height: auto; max-height: 0; overflow: hidden; transition: max-height .3s ease; top: var(--ph); }
  #main-nav.open { max-height: 400px; }
  #nav-list { flex-direction: column; height: auto; padding: 8px 0; }
  .nl { padding: 10px 18px; border-bottom: none; font-size: 13px; border-left: 3px solid transparent; }
  .nl::after { display: none; }
  .nl:hover, .nl.active { border-left-color: var(--gold2); background: rgba(255,255,255,.06); }
  .hero { min-height: 240px; }
  .frm-row2 { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .news-grid   { grid-template-columns: 1fr; }
  .page-wrap   { padding: 16px 12px 32px; }
  .card-sec    { padding: 16px; }
  .col-side    { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .videos-grid { grid-template-columns: 1fr; }
  .hero-title  { font-size: 18px; }
}
