/* ==========================================================================
   ANDRÉ WELKER — LINK NA BIO PROFISSIONAL
   Estética: Studio Broadcast Master & Acoustic High-Tech
   Mobile-First • Branding • CRO • Profundidade • Animações
   ========================================================================== */

:root {
  /* Cores Base */
  --bg-dark: #07090e;
  --bg-deep: #0d121c;
  --bg-surface: rgba(18, 26, 42, 0.78);
  --bg-surface-elevated: rgba(26, 37, 59, 0.88);
  --bg-card-hover: rgba(32, 45, 72, 0.92);
  
  /* Acentos de Iluminação & Broadcast */
  --accent-cyan: #00e5ff;
  --accent-cyan-glow: rgba(0, 229, 255, 0.35);
  --accent-blue: #2563eb;
  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.3);
  --accent-red-onair: #ff334b;
  --accent-red-glow: rgba(255, 51, 75, 0.45);
  --accent-green-wa: #25d366;
  --accent-green-glow: rgba(37, 211, 102, 0.35);
  
  /* Textos */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Bordas */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-cyan: rgba(0, 229, 255, 0.3);
  
  /* Sombras & Elevações (Luz superior-esquerda) */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 16px 36px -6px rgba(0, 0, 0, 0.65), 0 0 20px rgba(0, 229, 255, 0.15);
  --shadow-cta: 0 12px 28px rgba(37, 211, 102, 0.35), 0 0 15px rgba(37, 211, 102, 0.2);
  --shadow-btn-primary: 0 10px 24px rgba(0, 229, 255, 0.28), 0 0 12px rgba(0, 229, 255, 0.15);
  
  /* Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transições */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: 
    radial-gradient(circle at 50% 0%, rgba(0, 140, 255, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 100% 40%, rgba(245, 158, 11, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 0% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark) 0%, #0a0e17 50%, var(--bg-dark) 100%);
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(85px + env(safe-area-inset-bottom, 20px));
}

/* Studio Acoustic Grid Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Container Mobile Master (Max 480px em desktop com visual de smartphone sofisticado) */
.page-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  padding: 0 16px;
  margin: 0 auto;
}

/* ==========================================================================
   TOP STATUS BAR: LIVE ON AIR BADGE
   ========================================================================== */
.top-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  margin-top: 12px;
  background: rgba(13, 18, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.6s ease-out;
}

.on-air-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 51, 75, 0.15);
  border: 1px solid rgba(255, 51, 75, 0.35);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ff5469;
  text-transform: uppercase;
}

.on-air-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red-onair);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red-onair);
  animation: pulseDot 1.8s infinite ease-in-out;
}

.status-station-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.status-station-info strong {
  color: var(--accent-cyan);
  font-weight: 700;
}

.status-city-pill {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--text-muted);
}

/* ==========================================================================
   HERO SECTION & 3D STUDIO OVERLAYS
   ========================================================================== */
.hero-section {
  margin-top: 18px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 3D Mic Float Background Accent */
.hero-3d-visual {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: -60px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: #0d121c;
}

.hero-3d-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.85) contrast(1.1);
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.hero-3d-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.1) 0%, rgba(7, 9, 14, 0.7) 65%, var(--bg-dark) 100%);
}

.hero-live-frequency {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.freq-bar {
  width: 3px;
  background: var(--accent-cyan);
  border-radius: 1px;
  animation: eqBounce 1.2s infinite ease-in-out alternate;
}
.freq-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.freq-bar:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.freq-bar:nth-child(3) { height: 40%; animation-delay: 0.5s; }
.freq-bar:nth-child(4) { height: 100%; animation-delay: 0.2s; }
.freq-bar:nth-child(5) { height: 70%; animation-delay: 0.4s; }

/* Avatar Profile Stage */
.hero-profile-stage {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.avatar-wrapper {
  position: relative;
  width: 114px;
  height: 114px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #2563eb 50%, var(--accent-amber) 100%);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4), var(--shadow-md);
  transition: transform var(--transition-normal);
}

.avatar-wrapper:hover {
  transform: scale(1.04);
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: var(--bg-deep);
  border: 3px solid var(--bg-dark);
}

.verified-tag {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #00e5ff, #0284c7);
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.verified-tag svg {
  width: 16px;
  height: 16px;
}

/* Textos do Hero */
.hero-content {
  margin-top: 14px;
  width: 100%;
}

.hero-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}

.hero-handle {
  font-size: 0.88rem;
  color: var(--accent-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  background: rgba(0, 229, 255, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 229, 255, 0.2);
  margin-top: 4px;
  transition: background var(--transition-fast);
}

.hero-handle:hover {
  background: rgba(0, 229, 255, 0.15);
}

.hero-roles {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-roles span.bullet {
  color: var(--accent-amber);
}

.hero-pitch {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 380px;
}

/* Metric Pills (Autoridade Imediata) */
.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  margin-top: 18px;
}

.metric-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.metric-pill:hover {
  transform: translateY(-2px);
  border-color: var(--border-cyan);
}

.metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-cyan);
  display: block;
}

.metric-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
  display: block;
}

/* ==========================================================================
   PRIMARY HERO CTA (CONVERSÃO PROTAGONISTA)
   ========================================================================== */
.hero-main-cta {
  width: 100%;
  margin-top: 20px;
}

.btn-cta-master {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-cta);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cta-master::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  animation: shineGlow 3.5s infinite;
}

.btn-cta-master:active {
  transform: scale(0.98);
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.cta-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cta-text-wrap {
  display: flex;
  flex-direction: column;
}

.cta-supertitle {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cta-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2.5;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section-wrapper {
  margin-top: 26px;
  width: 100%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 4px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-badge {
  font-size: 0.65rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--accent-cyan);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   SOLUÇÕES COMERCIAIS (CARDS DE CONVERSÃO 3D)
   ========================================================================== */
.service-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.service-card:active {
  transform: scale(0.98);
}

.service-card-featured {
  border-color: rgba(0, 229, 255, 0.3);
  background: linear-gradient(160deg, rgba(20, 32, 54, 0.85) 0%, rgba(13, 20, 34, 0.95) 100%);
  box-shadow: 0 8px 24px -4px rgba(0, 229, 255, 0.15), var(--shadow-sm);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-icon-box.amber {
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.card-icon-box.cyan {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.2);
}

.card-icon-box.purple {
  color: #c084fc;
  background: rgba(192, 132, 252, 0.08);
  border-color: rgba(192, 132, 252, 0.2);
}

.card-icon-box svg {
  width: 24px;
  height: 24px;
}

.card-meta {
  flex: 1;
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-amber);
  margin-bottom: 2px;
  display: block;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 4px;
}

.card-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.card-footer-cta span.btn-subtext {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-footer-cta .cta-pill-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 229, 255, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: all var(--transition-fast);
}

.service-card:hover .cta-pill-arrow {
  background: var(--accent-cyan);
  color: #051322;
}

.cta-pill-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ==========================================================================
   BASTIDORES & PROVA SOCIAL (CARROSSEL COM ANIMAÇÃO CONTÍNUA EM LOOPING)
   ========================================================================== */
.gallery-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 8px 0 18px 0;
  cursor: grab;
  /* Suaves sombras de desvanecimento nas bordas para profundidade cinematográfica */
  mask-image: linear-gradient(to right, transparent 0%, black 16px, black calc(100% - 16px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16px, black calc(100% - 16px), transparent 100%);
}

.gallery-marquee-viewport:active {
  cursor: grabbing;
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  animation: galleryLoop 26s linear infinite;
  will-change: transform;
}

/* Pausa suave ao passar o mouse ou segurar no mobile */
.gallery-marquee-viewport:hover .gallery-marquee-track,
.gallery-marquee-viewport.is-paused .gallery-marquee-track {
  animation-play-state: paused;
}

@keyframes galleryLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-item {
  flex: 0 0 240px;
  width: 240px;
  margin-right: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.gallery-thumb-wrap {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.gallery-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-thumb-wrap img {
  transform: scale(1.06);
}

.gallery-tag-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 6px;
}

.gallery-caption {
  padding: 10px 12px;
}

.gallery-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.gallery-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 3px;
  line-height: 1.35;
}

/* ==========================================================================
   AVALON STUDIO 20 ANOS (AUTORIDADE & CREDIBILIDADE)
   ========================================================================== */
.studio-authority-card {
  background: linear-gradient(150deg, rgba(22, 33, 53, 0.85) 0%, rgba(10, 16, 28, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 8px 24px -4px rgba(245, 158, 11, 0.12), var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.studio-authority-card::after {
  content: '20';
  position: absolute;
  bottom: -15px;
  right: -5px;
  font-family: 'Outfit', sans-serif;
  font-size: 7.5rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.05);
  pointer-events: none;
  line-height: 1;
}

.authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-amber);
  margin-bottom: 8px;
}

.authority-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.authority-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-top: 6px;
}

.authority-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.auth-highlight-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #e2e8f0;
  font-weight: 600;
}

.auth-check-icon {
  width: 16px;
  height: 16px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}

.auth-check-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 3;
}

/* ==========================================================================
   SINTONIZE / OUVIR HITS FM AO VIVO
   ========================================================================== */
.radio-live-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.radio-live-card:hover {
  border-color: var(--accent-cyan);
  background: var(--bg-surface-elevated);
}

.radio-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.radio-logo-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  line-height: 1;
}

.radio-logo-badge .hits-txt {
  font-size: 0.95rem;
  color: #facc15;
}

.radio-logo-badge .fm-txt {
  font-size: 0.55rem;
  color: #ffffff;
  margin-top: 1px;
}

.radio-text-col {
  display: flex;
  flex-direction: column;
}

.radio-freq-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.radio-prog-now {
  font-size: 0.74rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.radio-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.radio-listen-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   CANAIS DE CONTATO & SOCIAL LINKS
   ========================================================================== */
.social-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn.instagram svg {
  color: #e1306c;
}

.social-btn.website svg {
  color: var(--accent-cyan);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer-wrap {
  margin-top: 40px;
  padding: 20px 0 10px 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-credits {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

/* ==========================================================================
   STICKY BOTTOM CONVERSION BAR (POLEGAR MOBILE)
   ========================================================================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 10, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 12px));
  z-index: 100;
  display: flex;
  justify-content: center;
}

.sticky-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-fast);
}

.sticky-btn-wa:active {
  transform: scale(0.97);
}

.sticky-btn-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.sticky-btn-call {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.sticky-btn-call:active {
  transform: scale(0.95);
}

.sticky-btn-call svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   ANIMAÇÕES & KEYFRAMES
   ========================================================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-red-onair);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
    box-shadow: 0 0 18px var(--accent-red-onair);
  }
}

@keyframes eqBounce {
  0% { height: 20%; }
  100% { height: 95%; }
}

@keyframes shineGlow {
  0% { left: -100%; }
  20% { left: 140%; }
  100% { left: 140%; }
}

/* Modal de Toast / Feedback ao Copiar ou Clicar */
.toast-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--accent-cyan);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.toast-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   ACESSIBILIDADE: PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .gallery-marquee-track {
    animation: none !important;
    overflow-x: auto;
  }
}
