/* ==========================================================================
   RÁDIO VITÓRIA EM CRISTO — STYLESHEET
   Tokens: cor, tipografia, espaçamento
   ========================================================================== */

:root{
  /* Cor */
  --navy-deep:   #0A1830;
  --navy:        #0B1E3D;
  --navy-mid:    #12305F;
  --royal:       #1E4FBF;
  --royal-soft:  #2E5FE0;
  --gold:        #D4AF37;
  --gold-light:  #E8CE76;
  --white:       #FFFFFF;
  --off-white:   #F6F7FB;
  --paper:       #FBFAF6;
  --ink:         #0B1220;
  --ink-soft:    #3C4557;
  --gray:        #6B7385;
  --line:        #E4E7F0;

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --header-h: 78px;
  --mini-player-h: 76px;
  --tabbar-h: 64px;

  /* Sombra */
  --shadow-sm: 0 4px 16px rgba(11,24,48,0.08);
  --shadow-md: 0 12px 32px rgba(11,24,48,0.14);
  --shadow-gold: 0 8px 24px rgba(212,175,55,0.35);

  --ease: cubic-bezier(.22,.8,.32,1);
}

/* ============ RESET ============ */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input, textarea{ font-family:inherit; }
h1,h2,h3,p{ margin:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.skip-link{
  position:absolute; left:-9999px; top:0;
  background:var(--gold); color:var(--navy); padding:12px 20px;
  z-index:9999; border-radius:0 0 8px 0; font-weight:700;
}
.skip-link:focus{ left:0; }

/* ============ TIPOGRAFIA GERAL ============ */
.eyebrow{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:0.78rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--royal);
  margin-bottom:14px;
}
.eyebrow--light{ color:var(--gold-light); }
.eyebrow__bar{
  width:28px; height:2px; background:var(--gold); display:inline-block;
}

.section-title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(1.9rem, 3.2vw, 2.7rem);
  line-height:1.15;
  color:var(--navy);
  margin-bottom:14px;
}
.section-title--light{ color:var(--white); }

.section-subtitle{
  font-size:1.02rem;
  color:var(--gray);
  max-width:560px;
  line-height:1.6;
}

.section-head{ margin-bottom:44px; }

/* ============ BOTÕES ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px;
  border-radius:100px;
  font-weight:700;
  font-size:0.95rem;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn--lg{ padding:16px 34px; font-size:1rem; }

.btn--gold{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--navy-deep);
  box-shadow:var(--shadow-gold);
}
.btn--gold:hover{ box-shadow:0 12px 30px rgba(212,175,55,0.45); }

.btn--outline{
  border:1.5px solid rgba(255,255,255,0.5);
  color:var(--white);
  background:rgba(255,255,255,0.04);
}
.btn--outline:hover{ background:rgba(255,255,255,0.12); border-color:var(--white); }

.btn--live{
  background:var(--navy);
  color:var(--white);
  padding:10px 20px;
  font-size:0.88rem;
}
.btn--live:hover{ background:var(--navy-mid); }
.btn--live__dot{
  width:8px; height:8px; border-radius:50%; background:#FF4B4B;
  box-shadow:0 0 0 rgba(255,75,75,0.6);
  animation:pulse-dot 1.8s infinite;
}
.btn__play-icon{ font-size:0.8rem; }

.live-dot{
  width:8px; height:8px; border-radius:50%; background:#FF4B4B; display:inline-block;
  animation:pulse-dot 1.8s infinite;
  margin-right:4px; vertical-align:middle;
}
@keyframes pulse-dot{
  0%{ box-shadow:0 0 0 0 rgba(255,75,75,0.55); }
  70%{ box-shadow:0 0 0 8px rgba(255,75,75,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,75,75,0); }
}

/* ============ HEADER ============ */
.header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--header-h);
  background:rgba(11,24,48,0.72);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background .3s var(--ease), height .3s var(--ease);
}
.header__inner{
  height:100%;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{ display:flex; flex-shrink:0; }
.brand__wave{ stroke-dasharray:120; stroke-dashoffset:0; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-family:var(--font-display); font-weight:600; font-size:1.18rem; color:var(--white); }
.brand__name em{ color:var(--gold); font-style:normal; }
.brand__tag{ font-size:0.62rem; letter-spacing:0.3em; color:rgba(255,255,255,0.55); font-weight:700; }

.nav__list{ display:flex; gap:34px; }
.nav__link{
  color:rgba(255,255,255,0.82); font-weight:600; font-size:0.92rem;
  position:relative; padding:6px 0; transition:color .2s;
}
.nav__link::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gold); transition:width .25s var(--ease);
}
.nav__link:hover, .nav__link.is-active{ color:var(--white); }
.nav__link:hover::after, .nav__link.is-active::after{ width:100%; }

.header__actions{ display:flex; align-items:center; gap:16px; }

.hamburger{
  display:none; flex-direction:column; gap:5px; width:26px; padding:6px 0;
}
.hamburger span{
  width:100%; height:2px; background:var(--white); border-radius:2px;
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu{
  position:fixed; top:0; right:0; height:100vh; width:min(320px, 84vw);
  background:var(--navy-deep);
  z-index:1200;
  padding:110px 28px 40px;
  transform:translateX(100%);
  transition:transform .4s var(--ease);
  display:flex; flex-direction:column; gap:34px;
}
.mobile-menu.is-open{ transform:translateX(0); }
.mobile-menu ul{ display:flex; flex-direction:column; gap:22px; }
.mobile-link{ font-family:var(--font-display); font-size:1.3rem; color:var(--white); }
.mobile-menu__cta{ align-self:flex-start; }

.mobile-menu__backdrop{
  position:fixed; inset:0; background:rgba(5,10,22,0.55);
  z-index:1100; opacity:0; pointer-events:none; transition:opacity .35s var(--ease);
}
.mobile-menu__backdrop.is-open{ opacity:1; pointer-events:auto; }

/* ============ HERO ============ */
.hero{
  position:relative;
  padding:calc(var(--header-h) + 74px) 0 100px;
  background:
    radial-gradient(circle at 85% 12%, rgba(212,175,55,0.14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(30,79,191,0.35), transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  overflow:hidden;
  color:var(--white);
}
.hero__waves{ position:absolute; inset:0; opacity:0.5; pointer-events:none; }
.hero__wave-svg{ width:140%; height:100%; position:absolute; bottom:-40px; left:-10%; }
#waveGlow{ animation:wave-drift 9s ease-in-out infinite; }
@keyframes wave-drift{
  0%,100%{ transform:translateX(0) translateY(0); }
  50%{ transform:translateX(-30px) translateY(8px); }
}

.hero__inner{
  display:grid; grid-template-columns:1.15fr 0.85fr; align-items:center; gap:40px;
  position:relative; z-index:2;
}
.hero__title{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(2.6rem, 5.6vw, 4.4rem);
  line-height:1.05;
  margin-bottom:22px;
  letter-spacing:-0.01em;
}
.hero__title--gold{ color:var(--gold); }
.hero__subtitle{
  font-size:1.12rem; line-height:1.65; color:rgba(255,255,255,0.82);
  max-width:520px; margin-bottom:34px;
}
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:34px; }
.hero__now{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.92rem; color:rgba(255,255,255,0.75);
  border:1px solid rgba(255,255,255,0.16); border-radius:100px;
  padding:9px 18px; background:rgba(255,255,255,0.04);
}
.hero__now strong{ color:var(--white); }

.hero__visual{ display:flex; justify-content:center; }
.hero__disc{
  position:relative; width:min(320px, 70vw); aspect-ratio:1/1;
  display:flex; align-items:center; justify-content:center;
}
.hero__disc-ring{
  position:absolute; inset:0; border-radius:50%;
  border:1.5px dashed rgba(212,175,55,0.4);
  animation:spin 30s linear infinite;
}
.hero__disc-core{
  width:62%; height:62%; border-radius:50%;
  background:radial-gradient(circle at 32% 28%, var(--royal-soft), var(--navy-deep) 72%);
  box-shadow:0 20px 60px rgba(30,79,191,0.5), inset 0 0 0 6px rgba(255,255,255,0.05);
  display:flex; align-items:center; justify-content:center;
  animation:disc-pulse 4s ease-in-out infinite;
}
@keyframes disc-pulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.035); }
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.hero__bars{
  position:absolute; bottom:6%; display:flex; align-items:flex-end; gap:5px; height:60px;
}
.hero__bars span{
  width:5px; border-radius:3px;
  background:linear-gradient(180deg, var(--gold-light), var(--gold));
  animation:bar-bounce 1.2s ease-in-out infinite;
}
.hero__bars span:nth-child(1){ height:20%; animation-delay:0s; }
.hero__bars span:nth-child(2){ height:55%; animation-delay:.1s; }
.hero__bars span:nth-child(3){ height:35%; animation-delay:.2s; }
.hero__bars span:nth-child(4){ height:90%; animation-delay:.3s; }
.hero__bars span:nth-child(5){ height:50%; animation-delay:.4s; }
.hero__bars span:nth-child(6){ height:70%; animation-delay:.5s; }
.hero__bars span:nth-child(7){ height:30%; animation-delay:.6s; }
@keyframes bar-bounce{
  0%,100%{ transform:scaleY(0.4); }
  50%{ transform:scaleY(1); }
}

/* ============ FADE-IN GERAL ============ */
.fade-in-section{
  opacity:0; transform:translateY(26px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in-section.is-visible{ opacity:1; transform:translateY(0); }

/* ============ PLAYER AO VIVO ============ */
.player-section{ padding:70px 0 20px; margin-top:-58px; position:relative; z-index:3; }

.player-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  padding:34px;
  border:1px solid var(--line);
}
.player-card__top{
  display:flex; align-items:center; gap:24px; margin-bottom:28px; flex-wrap:wrap;
}
.player-card__cover{
  position:relative; width:96px; height:96px; border-radius:18px; overflow:hidden; flex-shrink:0;
  box-shadow:var(--shadow-sm);
}
.player-card__live-badge{
  position:absolute; bottom:6px; left:6px; right:6px;
  background:rgba(11,24,48,0.85); color:var(--white);
  font-size:0.62rem; font-weight:800; letter-spacing:0.08em;
  border-radius:6px; padding:3px 0; text-align:center;
  display:flex; align-items:center; justify-content:center; gap:4px;
}

.player-card__info{ flex:1; min-width:200px; }
.player-card__eyebrow{ font-size:0.78rem; color:var(--gray); font-weight:700; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:4px; }
.player-card__station{ font-family:var(--font-display); font-size:1.5rem; color:var(--navy); margin-bottom:4px; }
.player-card__track{ color:var(--gray); font-size:0.95rem; margin-bottom:10px; }

.player-card__wave{ display:flex; align-items:flex-end; gap:3px; height:22px; }
.player-card__wave span{
  width:3px; border-radius:2px; background:var(--royal);
  animation:wave-bounce 1s ease-in-out infinite;
}
.player-card__wave span:nth-child(odd){ animation-duration:.8s; }
.player-card__wave span:nth-child(3n){ background:var(--gold); }
.player-card__wave span:nth-child(1){ height:30%; }
.player-card__wave span:nth-child(2){ height:70%; animation-delay:.1s; }
.player-card__wave span:nth-child(3){ height:50%; animation-delay:.2s; }
.player-card__wave span:nth-child(4){ height:90%; animation-delay:.3s; }
.player-card__wave span:nth-child(5){ height:40%; animation-delay:.4s; }
.player-card__wave span:nth-child(6){ height:65%; animation-delay:.5s; }
.player-card__wave span:nth-child(7){ height:35%; animation-delay:.6s; }
.player-card__wave span:nth-child(8){ height:80%; animation-delay:.7s; }
.player-card__wave span:nth-child(9){ height:45%; animation-delay:.8s; }
.player-card__wave span:nth-child(10){ height:60%; animation-delay:.9s; }
.player-card__wave span:nth-child(11){ height:30%; animation-delay:1s; }
.player-card__wave span:nth-child(12){ height:55%; animation-delay:1.1s; }
@keyframes wave-bounce{
  0%,100%{ transform:scaleY(0.4); }
  50%{ transform:scaleY(1); }
}
.is-paused .player-card__wave span{ animation-play-state:paused; transform:scaleY(0.25); }

.player-card__share{
  display:flex; align-items:center; gap:8px;
  color:var(--royal); font-weight:700; font-size:0.9rem;
  border:1.5px solid var(--line); border-radius:100px; padding:10px 18px;
  transition:border-color .2s, background .2s;
}
.player-card__share:hover{ border-color:var(--royal); background:#F1F5FF; }

.player-card__controls{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }

.player-btn--play{
  width:64px; height:64px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--royal-soft), var(--navy));
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(30,79,191,0.4);
  transition:transform .2s var(--ease);
}
.player-btn--play:hover{ transform:scale(1.06); }
.player-btn--play svg{ margin-left:2px; }

.player-card__progress{ flex:1; min-width:180px; display:flex; align-items:center; gap:10px; }
.progress-time{ font-size:0.78rem; color:var(--gray); font-weight:700; min-width:44px; }
.progress-track{
  flex:1; height:6px; border-radius:6px; background:var(--line); overflow:hidden; position:relative;
}
.progress-track__fill{
  position:absolute; left:0; top:0; bottom:0; width:38%;
  background:linear-gradient(90deg, var(--royal), var(--gold));
  border-radius:6px;
  animation:live-flow 3s linear infinite;
}
@keyframes live-flow{
  0%{ width:20%; } 50%{ width:82%; } 100%{ width:20%; }
}

.player-card__volume{ display:flex; align-items:center; gap:10px; color:var(--royal); }
.player-card__volume input[type="range"]{ width:110px; accent-color:var(--royal); }

.player-card__note{ margin-top:18px; font-size:0.78rem; color:var(--gray); }
.player-card__note code{ background:var(--off-white); padding:2px 6px; border-radius:4px; }

/* ============ NO AR AGORA ============ */
.onair{ padding:80px 0; background:var(--off-white); }
.onair__inner{
  display:flex; align-items:center; gap:48px;
  background:linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  border-radius:var(--radius-lg);
  padding:52px;
  color:var(--white);
  position:relative; overflow:hidden;
}
.onair__art{ position:relative; flex-shrink:0; }
.onair__art-glow{
  position:absolute; inset:-20px; border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  animation:disc-pulse 3s ease-in-out infinite;
}
.onair__title{ font-family:var(--font-display); font-size:clamp(1.6rem,3vw,2.3rem); margin-bottom:6px; }
.onair__presenter{ color:rgba(255,255,255,0.75); margin-bottom:14px; }
.onair__status{ display:flex; align-items:center; gap:6px; font-weight:700; font-size:0.9rem; margin-bottom:22px; color:var(--gold-light); }

/* ============ PROGRAMAÇÃO ============ */
.schedule{ padding:100px 0; }
.schedule__days{
  display:flex; gap:10px; margin-bottom:36px; overflow-x:auto; padding-bottom:6px;
  scrollbar-width:none;
}
.schedule__days::-webkit-scrollbar{ display:none; }
.day-pill{
  padding:10px 20px; border-radius:100px; border:1.5px solid var(--line);
  font-weight:700; font-size:0.88rem; color:var(--ink-soft); flex-shrink:0;
  transition:all .2s var(--ease);
}
.day-pill:hover{ border-color:var(--royal); }
.day-pill.is-active{ background:var(--navy); border-color:var(--navy); color:var(--white); }

.schedule__list{ display:flex; flex-direction:column; gap:14px; }
.schedule-item{
  display:flex; align-items:center; gap:22px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:18px 22px; transition:box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.schedule-item:hover{ box-shadow:var(--shadow-sm); border-color:transparent; }
.schedule-item.is-onair{
  border-color:var(--gold); background:linear-gradient(90deg, #FFFBEF, var(--white));
}
.schedule-item__time{
  font-family:var(--font-display); font-size:1.15rem; color:var(--navy); font-weight:600;
  min-width:70px;
}
.schedule-item__art{
  width:52px; height:52px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg, var(--royal), var(--navy-deep));
}
.schedule-item__body{ flex:1; }
.schedule-item__name{ font-weight:700; color:var(--ink); margin-bottom:2px; }
.schedule-item__presenter{ font-size:0.85rem; color:var(--gray); }
.schedule-item__desc{ font-size:0.85rem; color:var(--gray); margin-top:3px; display:none; }
.schedule-item__badge{
  font-size:0.68rem; font-weight:800; letter-spacing:0.06em; color:var(--navy-deep);
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  padding:5px 12px; border-radius:100px; flex-shrink:0;
  display:flex; align-items:center; gap:5px;
}

/* ============ SOBRE ============ */
.about{ padding:100px 0; background:var(--off-white); }
.about__inner{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:start; }
.about__lead{ font-family:var(--font-display); font-size:1.35rem; line-height:1.5; color:var(--navy); margin-bottom:20px; }
.about__body{ color:var(--ink-soft); line-height:1.75; font-size:1.02rem; }

.about__stats{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.stat-card{
  background:var(--white); border-radius:var(--radius-md); border:1px solid var(--line);
  padding:26px 22px; text-align:left; transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.stat-card__num{
  display:block; font-family:var(--font-display); font-size:2rem; color:var(--royal); font-weight:600; margin-bottom:4px;
}
.stat-card__label{ font-size:0.85rem; color:var(--gray); font-weight:600; }

/* ============ NOTÍCIAS ============ */
.news{ padding:100px 0; }
.news__grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
.news-card{
  background:var(--white); border-radius:var(--radius-md); overflow:hidden;
  border:1px solid var(--line); transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
}
.news-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.news-card__img{
  height:140px; background:linear-gradient(135deg, var(--royal), var(--navy-deep));
  position:relative;
}
.news-card__category{
  position:absolute; top:12px; left:12px; background:rgba(255,255,255,0.92); color:var(--navy);
  font-size:0.68rem; font-weight:800; letter-spacing:0.05em; text-transform:uppercase;
  padding:5px 10px; border-radius:100px;
}
.news-card__body{ padding:18px 18px 22px; flex:1; display:flex; flex-direction:column; }
.news-card__date{ font-size:0.76rem; color:var(--gray); margin-bottom:8px; }
.news-card__title{ font-family:var(--font-display); font-size:1.08rem; color:var(--navy); line-height:1.35; margin-bottom:14px; flex:1; }
.news-card__link{ font-size:0.85rem; font-weight:700; color:var(--royal); display:inline-flex; align-items:center; gap:4px; }
.news-card__link:hover{ gap:8px; }

/* ============ PEDIDOS ============ */
.requests{ padding:100px 0; background:var(--off-white); }
.requests__inner{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; }
.requests__text{ align-self:start; position:sticky; top:120px; }

.request-form{ background:var(--white); border-radius:var(--radius-lg); border:1px solid var(--line); padding:34px; box-shadow:var(--shadow-sm); }
.request-form__row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.field__label{ font-size:0.84rem; font-weight:700; color:var(--ink-soft); }
.field input, .field textarea{
  border:1.5px solid var(--line); border-radius:10px; padding:12px 14px;
  font-size:0.95rem; color:var(--ink); transition:border-color .2s;
  background:var(--paper); resize:vertical;
}
.field input:focus, .field textarea:focus{ border-color:var(--royal); outline:none; }
.request-form__submit{ width:100%; margin-top:6px; }
.request-form__hint{ text-align:center; font-size:0.8rem; color:var(--gray); margin-top:14px; }

/* ============ REDES SOCIAIS ============ */
.social{ padding:100px 0; background:linear-gradient(160deg, var(--navy-deep), var(--navy-mid)); }
.social__grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.social-card{
  display:flex; flex-direction:column; align-items:center; gap:12px;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-md); padding:30px 20px; color:var(--white); font-weight:700;
  transition:transform .3s var(--ease), background .3s var(--ease);
}
.social-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.1); }
.social-card__icon{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--gold-light), var(--gold)); color:var(--navy-deep);
}

/* ============ FRASE DE IMPACTO ============ */
.impact{
  position:relative; padding:110px 0; overflow:hidden; text-align:center;
  background:radial-gradient(circle at 50% 0%, var(--navy-mid), var(--navy-deep) 70%);
}
.impact__waves{
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(90deg, rgba(212,175,55,0.06) 0 2px, transparent 2px 40px);
}
.impact__inner{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; gap:36px; }
.impact__quote{
  font-family:var(--font-display); font-weight:500; font-style:italic;
  font-size:clamp(1.5rem, 3.4vw, 2.4rem); line-height:1.5; color:var(--white); max-width:820px;
}

/* ============ FOOTER ============ */
.footer{ background:var(--navy-deep); color:rgba(255,255,255,0.75); padding:70px 0 0; }
.footer__inner{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.brand--footer{ margin-bottom:16px; }
.footer__slogan{ font-size:0.9rem; line-height:1.6; margin-bottom:20px; max-width:280px; }
.footer__heading{ color:var(--white); font-size:0.95rem; margin-bottom:18px; font-weight:700; }
.footer__list{ display:flex; flex-direction:column; gap:12px; }
.footer__list a{ font-size:0.9rem; transition:color .2s; }
.footer__list a:hover{ color:var(--gold-light); }
.footer__contact-note{ font-size:0.85rem; line-height:1.6; }
.footer__contact-note code{ background:rgba(255,255,255,0.1); padding:2px 6px; border-radius:4px; }

.footer__bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  padding:24px 0; font-size:0.82rem;
}

/* ============ MINI PLAYER ============ */
.mini-player{
  position:fixed; left:0; right:0; bottom:0; z-index:900;
  height:var(--mini-player-h);
  background:rgba(10,24,48,0.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(255,255,255,0.1);
  transform:translateY(100%);
  transition:transform .4s var(--ease);
}
.mini-player.is-visible{ transform:translateY(0); }
.mini-player__inner{ height:100%; display:flex; align-items:center; gap:20px; }
.mini-player__info{ display:flex; align-items:center; gap:12px; min-width:0; flex:1; }
.mini-player__cover{ flex-shrink:0; border-radius:10px; overflow:hidden; }
.mini-player__text{ display:flex; flex-direction:column; gap:3px; color:var(--white); min-width:0; }
.mini-player__text strong{ font-size:0.9rem; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mini-player__text span{ font-size:0.76rem; color:rgba(255,255,255,0.6); display:flex; align-items:center; }

.mini-player__wave{ display:none; align-items:flex-end; gap:3px; height:20px; }
.mini-player__wave span{ width:3px; border-radius:2px; background:var(--gold); animation:wave-bounce 1s ease-in-out infinite; }
.mini-player__wave span:nth-child(1){ height:40%; }
.mini-player__wave span:nth-child(2){ height:80%; animation-delay:.15s; }
.mini-player__wave span:nth-child(3){ height:55%; animation-delay:.3s; }
.mini-player__wave span:nth-child(4){ height:90%; animation-delay:.45s; }
.mini-player__wave span:nth-child(5){ height:35%; animation-delay:.6s; }

.mini-player__controls{ display:flex; align-items:center; gap:16px; flex-shrink:0; }
.player-btn--mini{
  width:42px; height:42px; border-radius:50%; background:var(--gold); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform .2s;
}
.player-btn--mini:hover{ transform:scale(1.08); }
.player-btn--mini svg{ margin-left:1px; }
.mini-player__volume{ width:90px; accent-color:var(--gold); }

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float{
  position:fixed; right:24px; bottom:calc(var(--mini-player-h) + 24px);
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,0.45);
  z-index:950; transition:transform .25s var(--ease);
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float__tooltip{
  position:absolute; right:70px; top:50%; transform:translateY(-50%);
  background:var(--navy-deep); color:var(--white); font-size:0.8rem; font-weight:600;
  padding:8px 14px; border-radius:8px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .2s;
}
.whatsapp-float:hover .whatsapp-float__tooltip{ opacity:1; }

/* ============ BARRA INFERIOR MOBILE ============ */
.mobile-tabbar{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:940;
  height:var(--tabbar-h);
  background:var(--white);
  border-top:1px solid var(--line);
  box-shadow:0 -6px 20px rgba(11,24,48,0.06);
  align-items:stretch; justify-content:space-around;
}
.mobile-tabbar__item{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px;
  color:var(--gray); font-size:0.66rem; font-weight:700; flex:1;
}
.mobile-tabbar__item.is-active, .mobile-tabbar__item:active{ color:var(--royal); }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px){
  .hero__inner{ grid-template-columns:1fr; text-align:left; }
  .hero__visual{ order:-1; margin-bottom:10px; }
  .hero__disc{ width:220px; }
  .about__inner, .requests__inner{ grid-template-columns:1fr; }
  .requests__text{ position:static; }
  .news__grid{ grid-template-columns:repeat(2, 1fr); }
  .social__grid{ grid-template-columns:repeat(2, 1fr); }
  .footer__inner{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 860px){
  .nav{ display:none; }
  .hamburger{ display:flex; }
  .btn--live span:not(.btn--live__dot){ display:none; }
  .btn--live{ padding:10px 12px; }
  .onair__inner{ flex-direction:column; text-align:center; padding:40px 26px; }
  .mini-player__wave{ display:flex; }
}

@media (max-width: 640px){
  .container{ padding:0 18px; }
  .player-card{ padding:24px 20px; }
  .player-card__controls{ flex-direction:column; align-items:stretch; gap:16px; }
  .player-card__volume{ order:3; }
  .player-btn--play{ align-self:center; }
  .news__grid{ grid-template-columns:1fr; }
  .social__grid{ grid-template-columns:1fr 1fr; }
  .request-form__row{ grid-template-columns:1fr; }
  .footer__inner{ grid-template-columns:1fr; gap:32px; }
  .mobile-tabbar{ display:flex; }
  .mini-player{ bottom:var(--tabbar-h); }
  .whatsapp-float{ bottom:calc(var(--tabbar-h) + var(--mini-player-h) + 18px); right:16px; width:52px; height:52px; }
  .mini-player__text span{ display:none; }
  .schedule-item__time{ min-width:56px; font-size:1rem; }
  .schedule-item{ padding:14px 16px; gap:14px; }
  .schedule-item__art{ display:none; }
}

@media (min-width: 641px){
  body{ padding-bottom:0; }
}
@media (max-width: 640px){
  body{ padding-bottom: calc(var(--tabbar-h)); }
}
