/* ============================================================
   Rádio Gospel — style.css (redesign completo)
   Paleta: Roxo #4a0e8f | Azul-escuro #0d0a2a | Dourado #f5a623
   Tipografia: Playfair Display (títulos) + Lato (corpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,700&family=Roboto+Slab:wght@600;700;800&display=swap');

/* ===== VARIÁVEIS ===== */
:root {
  --wine:       #4a0e8f;
  --wine-dark:  #2d0860;
  --wine-light: #6a20b0;
  --navy:       #0d0a2a;
  --navy-light: #1a1050;
  --gold:       #f5a623;
  --gold-light: #ffc844;
  --cream:      #faf5ff;
  --cream-dark: #f0e8ff;
  --parchment:  #f5eaff;
  --text:       #1a0a2a;
  --text-muted: #7060a0;
  --white:      #ffffff;
  --shadow-sm:  0 2px 12px rgba(74,14,143,.10);
  --shadow-md:  0 6px 28px rgba(74,14,143,.14);
  --shadow-lg:  0 14px 48px rgba(74,14,143,.18);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: .22s ease;
  --font-title: 'Roboto Slab', Georgia, serif;
  --font-body:  'Roboto', 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--wine); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--wine-light); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TEXTURA DE FUNDO SUTIL ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(74,14,143,.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(13,10,42,.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== PWA BANNER ===== */
.pwa-banner {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 1100;
  border-bottom: 2px solid var(--gold);
}
.pwa-inner { display: flex; align-items: center; gap: 12px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.pwa-inner span { flex: 1; font-size: .9rem; }
.btn-pwa-install {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  font-size: .85rem;
  letter-spacing: .3px;
}
.btn-pwa-dismiss { background: transparent; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 1.1rem; }

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(180deg, var(--wine-dark) 0%, var(--wine) 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 3px 0 var(--gold), 0 6px 24px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}
.header-brand:hover { color: var(--gold-light); text-decoration: none; }
.header-logo {
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.header-logo-placeholder {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(212,175,55,.4);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold);
}
.header-info { display: flex; flex-direction: column; line-height: 1.25; }
.header-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: #fff;
}
.header-freq {
  font-size: .78rem;
  color: var(--gold-light);
  opacity: .9;
  letter-spacing: .5px;
}
.header-freq .fa-heart { color: var(--gold); }

.hamburger {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  padding: 6px 10px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.15); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  color: rgba(255,255,255,.88);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .2px;
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover {
  background: rgba(255,255,255,.12);
  color: var(--gold-light);
  text-decoration: none;
}
.main-nav a:hover::after { transform: scaleX(1); }

/* ===== HERO PLAYER ===== */
.hero-player {
  background:
    linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 40%, var(--navy) 100%);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-player::before {
  content: '✝';
  position: absolute;
  right: -40px; top: -60px;
  font-size: 320px;
  color: rgba(255,255,255,.03);
  font-family: Georgia, serif;
  pointer-events: none;
  line-height: 1;
}
.hero-player::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; min-width: 240px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-text h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-faith-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-faith-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.88);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.hero-faith-tags span i { color: var(--gold); }

/* ===== PLAYER CARD ===== */
.player-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 20px;
  padding: 32px 36px;
  min-width: 320px;
  box-shadow: 0 12px 48px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.12);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: .78rem;
  text-transform: uppercase;
  color: #ffe8a3;
}
.pulse {
  width: 10px; height: 10px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulseAnim 1.4s infinite;
  flex-shrink: 0;
}
@keyframes pulseAnim {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,68,68,.6); }
  50% { box-shadow: 0 0 0 8px rgba(255,68,68,0); }
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.btn-play {
  background: var(--gold);
  color: var(--wine-dark);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,175,55,.5);
  flex-shrink: 0;
}
.btn-play:hover {
  transform: scale(1.1);
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(212,175,55,.7);
}
.volume-wrap { display: flex; align-items: center; gap: 10px; flex: 1; }
.volume-wrap i { color: rgba(255,255,255,.6); }
.volume-wrap input[type=range] { flex: 1; accent-color: var(--gold); height: 4px; }
.player-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; }
.btn-youtube { background: #ff0000; color: #fff; }
.btn-social:hover { opacity: .88; text-decoration: none; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.25); }

/* ===== MISSÃO (FAITH STRIP) ===== */
.faith-strip {
  padding: 56px 0;
  background: var(--parchment);
  border-bottom: 3px solid rgba(212,175,55,.25);
}
.faith-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faith-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
  position: relative;
}
.faith-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.faith-card i {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,14,143,.08);
  color: var(--wine);
  font-size: 1.5rem;
  margin-bottom: 16px;
  border: 2px solid rgba(74,14,143,.12);
}
.faith-card h3 {
  font-family: var(--font-title);
  color: var(--wine);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.faith-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }

/* ===== NO AR AGORA ===== */
.on-air-section {
  padding: 56px 0;
  background: var(--white);
}
.on-air-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.on-air-card, .next-shows-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,14,143,.09);
}
.on-air-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wine);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(212,175,55,.4);
}
.on-air-info { display: flex; gap: 18px; align-items: center; }
.on-air-photo {
  width: 78px; height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74,14,143,.2);
}
.on-air-photo-placeholder {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(74,14,143,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 2rem;
  flex-shrink: 0;
  border: 3px solid rgba(212,175,55,.4);
}
.on-air-show {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.on-air-host, .on-air-time {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.on-air-none { color: var(--text-muted); font-style: italic; font-size: .95rem; }
.badge-category {
  background: rgba(74,14,143,.1);
  color: var(--wine);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.next-list { list-style: none; }
.next-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(74,14,143,.08);
}
.next-time {
  font-weight: 700;
  color: var(--wine);
  font-size: .88rem;
  min-width: 48px;
  font-family: var(--font-title);
  font-style: italic;
}
.next-name { flex: 1; font-weight: 700; font-size: .92rem; }
.next-host { font-size: .8rem; color: var(--text-muted); }
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--wine);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .3px;
}
.btn-more:hover { color: var(--wine-light); }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212,175,55,.35);
}
.section-header h2 {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--wine);
  line-height: 1.2;
}
.btn-link {
  color: var(--wine);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .3px;
  white-space: nowrap;
  border: 1px solid rgba(74,14,143,.25);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.btn-link:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

/* ===== HOSTS GRID ===== */
.hosts-section { background: var(--parchment); }
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}
.host-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding: 24px 14px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--text);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.host-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
  text-decoration: none;
  color: var(--text);
}
.host-card img {
  width: 86px; height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(74,14,143,.15);
}
.host-photo-placeholder {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(74,14,143,.08);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 2rem;
  border: 3px solid rgba(212,175,55,.4);
}
.host-card-name { font-weight: 700; font-size: .88rem; color: var(--text); }

/* Big hosts grid */
.hosts-grid-big {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}
.host-card-big {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}
.host-card-big:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.host-card-big img { width: 100%; height: 210px; object-fit: cover; }
.host-photo-placeholder-big {
  width: 100%; height: 210px;
  background: rgba(74,14,143,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 4rem;
}
.host-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.host-card-body h3 { font-family: var(--font-title); font-size: 1.1rem; }
.btn-perfil {
  margin-top: auto;
  color: var(--wine);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== NEWS GRID ===== */
.news-section { background: var(--white); }
.news-grid, .news-grid-big {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(74,14,143,.08);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border-color: rgba(74,14,143,.18);
}
.news-card img { width: 100%; height: 188px; object-fit: cover; }
.news-img-placeholder {
  width: 100%; height: 188px;
  background: rgba(74,14,143,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 3rem;
}
.news-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.news-cat {
  font-size: .72rem;
  font-weight: 700;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.news-card-body h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}
.news-card-body p { font-size: .88rem; color: var(--text-muted); }
.news-date {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== ADS ===== */
.ads-area { margin: 14px auto; }
.ad-block { margin-bottom: 12px; }

/* ===== PÁGINAS INTERNAS ===== */
.main-content { padding: 48px 24px; }
.page-title-wrap { margin-bottom: 36px; }
.page-title-wrap h1 {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 12px;
}
.alert-live {
  background: var(--wine);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 22px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-left: 5px solid var(--gold);
}

/* Day tabs */
.day-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.day-tab {
  background: var(--white);
  border: 2px solid rgba(74,14,143,.2);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: .88rem;
}
.day-tab.active, .day-tab:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.day-panel { display: none; }
.day-panel.active { display: block; }
.no-shows { color: var(--text-muted); font-style: italic; padding: 24px; }

/* Schedule list */
.schedule-list { display: flex; flex-direction: column; gap: 14px; }
.schedule-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.schedule-item:hover { border-left-color: var(--gold); box-shadow: var(--shadow-md); }
.schedule-item.is-live { border-left-color: #f44336; background: #fff8f8; }
.live-tag {
  font-size: .72rem;
  font-weight: 700;
  color: #f44336;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sched-time {
  font-family: var(--font-title);
  font-style: italic;
  font-size: .95rem;
  font-weight: 600;
  color: var(--wine);
  min-width: 108px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sched-info { flex: 1; }
.sched-info strong { font-size: 1rem; font-weight: 700; }
.sched-host { font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 3px; }
.sched-desc { font-size: .85rem; color: var(--text-muted); margin-top: 5px; }

/* Host profile */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  color: var(--wine);
  font-weight: 700;
}
.host-profile {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  border-top: 4px solid var(--gold);
}
.host-profile-photo img {
  width: 190px; height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--gold);
  box-shadow: 0 6px 24px rgba(74,14,143,.2);
}
.host-profile-info { flex: 1; min-width: 220px; }
.host-profile-info h1 {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--wine);
}
.host-bio { color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.host-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  background: rgba(74,14,143,.08);
  color: var(--wine);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--wine); color: #fff; }
.host-shows {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.host-shows h2 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--wine);
}

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.page-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  border: 2px solid rgba(74,14,143,.18);
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}
.page-btn.active, .page-btn:hover { background: var(--wine); color: #fff; border-color: var(--wine); }

/* Article */
.article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  min-width: 0; /* fix: evita overflow no grid */
}
.article h1 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--wine);
  line-height: 1.25;
  text-align: left;
}
.article-subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 400; line-height: 1.5; text-align: left; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; font-size: .84rem; color: var(--text-muted); align-items: center; }
.article-figure { margin: 0 0 28px; }
.article-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.article-figcaption { font-size: .82rem; color: var(--text-muted); text-align: center; margin-top: 8px; font-style: italic; line-height: 1.4; }
.article-content { line-height: 1.85; color: var(--text); font-size: 1rem; text-align: left; }
.article-content p { margin-bottom: 16px; text-align: left; }
.article-content h2 { font-family: var(--font-title); font-size: 1.4rem; margin: 32px 0 10px; color: var(--wine); text-align: left; }
.article-content h3 { font-family: var(--font-title); font-size: 1.15rem; margin: 24px 0 8px; color: var(--wine); }
.article-content ul, .article-content ol { padding-left: 1.4em; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; line-height: 1.7; }
.article-content a { color: var(--wine); text-decoration: underline; }
.article-content img { border-radius: var(--radius-sm); margin: 14px 0; max-width: 100%; height: auto; }
.article-content blockquote { border-left: 4px solid var(--gold); margin: 20px 0; padding: 12px 20px; background: var(--parchment, #fdf8f0); border-radius: 0 6px 6px 0; font-style: italic; color: var(--text-muted); }
.article-content .rte-video-wrap { margin: 20px 0; }
.article-content .rte-video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 8px; display: block; }
.article-content .rte-audio-wrap { margin: 18px 0; background: var(--parchment, #fdf8f0); border-left: 4px solid var(--wine); border-radius: 6px; padding: 14px 18px; }
.article-content .rte-audio-wrap .rte-audio-title { font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--wine); }
.article-content .rte-audio-wrap audio { width: 100%; display: block; }
.article-sidebar { position: sticky; top: 145px; min-width: 0; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  border-top: 3px solid var(--gold);
}
.sidebar-widget h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--wine);
}
.related-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(74,14,143,.08);
  color: var(--text);
  font-weight: 700;
  font-size: .86rem;
  transition: var(--transition);
}
.related-item:hover { color: var(--wine); }
.related-item img { width: 58px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }

/* Alerts / Flash messages */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .95rem; line-height: 1.5; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 310px; gap: 36px; align-items: start; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.contact-info h3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; color: var(--wine); }
.contact-info p { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.contact-info p i { color: var(--wine); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: 14px;
  transition: var(--transition);
}
.wa-btn:hover { background: #1da855; color: #fff; transform: translateY(-2px); }

/* ===== FORMULÁRIOS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--text); font-size: .9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(74,14,143,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}
.btn-submit {
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(74,14,143,.35); }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--wine-dark) 100%);
  color: rgba(255,255,255,.82);
  padding-top: 56px;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col {}
.footer-col img { height: 52px; margin-bottom: 14px; }
.footer-col h3 {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer-col h4 {
  color: var(--gold-light);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,.25);
}
.footer-col > p {
  font-size: .88rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col > p i { color: var(--gold); width: 16px; text-align: center; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); text-decoration: none; padding-left: 4px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.footer-whatsapp:hover { background: #1da855; color: #fff; text-decoration: none; }
.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); text-decoration: none; }
.footer-bottom {
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(212,175,55,.18);
  padding: 18px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* ===== DARK PALETTE ===== */
.palette-escuro body { background: #0d0d1a; color: #f0f0f0; }
.palette-escuro .site-header { background: linear-gradient(180deg,#0a0a1a,#111127); }
.palette-escuro .site-footer { background: linear-gradient(135deg,#060610,#1a0808); }
.palette-escuro .news-card,
.palette-escuro .host-card,
.palette-escuro .on-air-card,
.palette-escuro .next-shows-card { background: #1a1a2e; border-color: rgba(212,175,55,.15); }
.palette-escuro .faith-strip { background: #121220; }
.palette-escuro .faith-card { background: #1e1e34; }
.palette-escuro .on-air-section { background: #15151f; }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .faith-grid { grid-template-columns: repeat(3, 1fr); }
  .on-air-grid { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .faith-grid { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; }
  .player-card { min-width: unset; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--wine-dark);
    flex-direction: column;
    padding: 16px;
    border-top: 2px solid var(--gold);
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    z-index: 800;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .hero-player { padding: 48px 0 40px; }
  .hero-faith-tags span { justify-content: center; }
  .section { padding: 48px 0; }
  .hosts-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .news-grid { grid-template-columns: 1fr; }
}

/* ===== COOKIE CONSENT ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0 16px 16px;
  animation: cookieSlideUp .4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner.cookie-hide {
  animation: cookieSlideDown .35s ease forwards;
}
@keyframes cookieSlideDown {
  to { transform: translateY(100%); opacity: 0; }
}
#cookie-inner {
  background: var(--navy);
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -6px 32px rgba(0,0,0,.35);
  border-top: 3px solid var(--gold);
  max-width: 960px;
  margin: 0 auto;
}
#cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
#cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}
#cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--gold-light);
}
#cookie-text p {
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
}
#cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
}
#cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
#cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8);
  padding: 9px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
  transition: .2s;
}
#cookie-reject:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
#cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 9px 22px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  transition: .2s;
}
#cookie-accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  #cookie-inner { border-radius: 12px 12px 0 0; padding: 16px; gap: 14px; }
  #cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ===== BOTÃO FLUTUANTE DE DOAÇÃO ===== */
#donation-btn {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 998;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 0 0 3px var(--gold);
  transition: transform .2s, box-shadow .2s;
  animation: donationPulse 3s ease-in-out infinite;
}
#donation-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,.35), 0 0 0 4px var(--gold-light);
}
#donation-btn i { font-size: 1.1rem; }
@keyframes donationPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 0 0 3px var(--gold); }
  50%      { box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 0 0 6px rgba(212,175,55,.4); }
}
@media (max-width: 480px) {
  #donation-btn span { display: none; }
  #donation-btn { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; bottom: 80px; }
}

/* ===== OVERLAY ===== */
#donation-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,30,.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* ===== MODAL ===== */
#donation-modal {
  background: var(--cream, #fffaf0);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
#donation-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s;
}
#donation-close:hover { background: rgba(255,255,255,.35); }

/* Header do modal */
#donation-header {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  color: #fff;
  text-align: center;
  padding: 32px 28px 24px;
  border-bottom: 3px solid var(--gold);
}
#donation-title-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(212,175,55,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
#donation-header h2 {
  font-family: var(--font-title, Georgia, serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
#donation-header p {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  margin: 0;
}

/* Body do modal */
#donation-body {
  display: flex;
  gap: 24px;
  padding: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* QR Code */
#donation-qr {
  text-align: center;
  flex-shrink: 0;
}
#donation-qr img {
  border-radius: 12px;
  border: 3px solid var(--gold, #d4af37);
  background: #fff;
  display: block;
}
#donation-qr p {
  font-size: .78rem;
  color: var(--text-muted, #7a6a5a);
  margin-top: 8px;
}

/* Info lateral */
#donation-info { flex: 1; min-width: 180px; }
#donation-or {
  text-align: center;
  color: var(--text-muted, #7a6a5a);
  font-size: .82rem;
  margin-bottom: 14px;
  display: none;
}

/* Caixa da chave */
#donation-key-wrap {
  background: var(--parchment, #f9f3e8);
  border: 2px solid rgba(74,14,143,.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
#donation-key-type {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wine, #6f1d1b);
  margin-bottom: 4px;
}
#donation-key-value {
  font-size: .95rem;
  font-weight: 700;
  word-break: break-all;
  margin-bottom: 12px;
  color: var(--text, #2a1f1a);
}
#donation-copy {
  width: 100%;
  background: var(--wine, #6f1d1b);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font-body, sans-serif);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .2s, transform .15s;
}
#donation-copy:hover { background: var(--wine-light, #8c2422); transform: translateY(-1px); }

#donation-copied {
  text-align: center;
  color: #2e7d32;
  font-weight: 700;
  font-size: .88rem;
  margin: 8px 0 0;
}

#donation-beneficiary {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(74,14,143,.1);
}
#donation-beneficiary p {
  font-size: .83rem;
  color: var(--text-muted, #7a6a5a);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#donation-beneficiary i { color: var(--wine, #6f1d1b); }

#donation-thanks {
  margin-top: 16px;
  text-align: center;
  font-size: .85rem;
  color: var(--wine, #6f1d1b);
  font-weight: 700;
  font-style: italic;
}

/* Responsivo */
@media (max-width: 480px) {
  #donation-body { flex-direction: column; align-items: center; padding: 20px; }
  #donation-or { display: block; }
}

/* ===== PLAYER BAR (sticky abaixo do menu) ===== */
.player-bar {
  position: sticky;
  top: 74px;
  z-index: 850;
  background: linear-gradient(90deg, #0d0d1f 0%, #1a1a3e 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0,0,0,.4);
}
.player-bar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.player-bar-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.player-bar-station {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.player-bar-station i { color: var(--gold); }
.player-bar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.btn-play-bar {
  background: var(--gold);
  color: var(--wine-dark);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 2px 10px rgba(212,175,55,.5);
}
.btn-play-bar:hover { transform: scale(1.12); box-shadow: 0 4px 18px rgba(212,175,55,.7); }
.player-bar-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 220px;
}
.player-bar-volume i { color: rgba(255,255,255,.55); font-size: .85rem; }
.player-bar-volume input[type=range] { flex: 1; accent-color: var(--gold); height: 3px; cursor: pointer; }
.player-bar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.pbar-social {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #fff;
  transition: transform .18s, opacity .18s;
  opacity: .8;
  text-decoration: none;
}
.pbar-social:hover { transform: scale(1.15); opacity: 1; }
.pbar-wa  { background: #25d366; }
.pbar-ig  { background: radial-gradient(circle at 30% 110%, #f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }
.pbar-yt  { background: #ff0000; }

/* Hero sem player-card — centralizado */
.hero-inner--centered { justify-content: center; text-align: center; }
.hero-inner--centered .hero-faith-tags { justify-content: center; }

@media (max-width: 600px) {
  .player-bar-station { display: none; }
  .player-bar-volume { max-width: 120px; }
}




/* ===== NOTÍCIAS: 1 DESTAQUE MODERADO + 3 PEQUENAS PROPORCIONAIS ===== */

.news-section-premium{
  background:var(--white);
}

.news-highlight-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}

.news-card-featured{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.news-card-featured img,
.news-card-featured .news-img-placeholder{
  width:100%;
  height:260px;
  object-fit:cover;
}

.news-card-featured .news-card-body{
  padding:18px 20px 20px;
}

.news-card-featured .news-card-body h3{
  font-size:1.35rem;
  line-height:1.28;
  margin:8px 0;
  color:var(--navy);
}

.news-card-featured .news-card-body p{
  font-size:.94rem;
  line-height:1.45;
  color:var(--text-light);
  margin:0 0 10px;
}

.featured-label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(212,175,55,.16);
  color:var(--navy);
  border:1px solid rgba(212,175,55,.30);
  border-radius:999px;
  padding:4px 10px;
  font-size:.66rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.45px;
  margin-bottom:6px;
}

.news-side-three{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.news-card-side{
  display:grid;
  grid-template-columns:118px 1fr;
  min-height:105px;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}

.news-card-side img,
.news-card-side .news-img-placeholder{
  width:118px;
  height:105px;
  object-fit:cover;
}

.news-card-side .news-card-body{
  padding:12px 14px;
}

.news-card-side .news-cat{
  font-size:.66rem;
  padding:3px 8px;
}

.news-card-side .news-card-body h3{
  font-size:.9rem;
  line-height:1.3;
  margin:6px 0 6px;
  color:var(--text);
}

.news-card-side .news-date{
  font-size:.72rem;
}

.news-card-side .news-card-body p{
  display:none;
}

@media(max-width:900px){
  .news-highlight-layout{
    grid-template-columns:1fr;
  }

  .news-card-featured img,
  .news-card-featured .news-img-placeholder{
    height:240px;
  }
}

@media(max-width:560px){
  .news-card-side{
    grid-template-columns:105px 1fr;
  }

  .news-card-side img,
  .news-card-side .news-img-placeholder{
    width:105px;
    height:100%;
  }

  .news-card-featured .news-card-body h3{
    font-size:1.18rem;
  }
}


/* ===== DESTAQUE COM TÍTULO SOBRE A IMAGEM ===== */

.news-card-featured{
  position:relative;
  overflow:hidden;
  min-height:340px;
  display:block;
}

.news-card-featured img,
.news-card-featured .news-img-placeholder{
  width:100%;
  height:340px;
  object-fit:cover;
}

.news-card-featured .news-card-body{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:26px;
  background:linear-gradient(transparent, rgba(0,0,0,.88));
  z-index:2;
}

.news-card-featured .news-card-body h3{
  color:#fff;
  font-size:1.55rem;
  line-height:1.28;
  margin:8px 0 0;
  text-shadow:0 2px 10px rgba(0,0,0,.45);
}

.news-card-featured .news-card-body p,
.news-card-featured .news-date{
  display:none;
}

.news-card-featured .news-cat{
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(6px);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.featured-label{
  background:rgba(212,175,55,.92);
  color:#111;
  border:none;
}

.news-card-featured::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.08);
  z-index:1;
}

@media(max-width:560px){

.news-card-featured{
  min-height:280px;
}

.news-card-featured img,
.news-card-featured .news-img-placeholder{
  height:280px;
}

.news-card-featured .news-card-body{
  padding:18px;
}

.news-card-featured .news-card-body h3{
  font-size:1.18rem;
}

}

/* ============================================================
   HOME — Rádio Gospel Evangélica
   Arquivos alterados: header.php, home.php e style.css
   ============================================================ */
body{background:#fff;color:#1f1720}.container{max-width:1240px}.pwa-banner{background:linear-gradient(90deg,#590000,#8f0705);border-bottom:1px solid rgba(255,173,31,.35)}.btn-pwa-install{background:#ffae17;color:#3a0600}.radio-top-player{position:relative;top:auto;z-index:880;background:linear-gradient(115deg,#7c0000 0%,#8e0201 35%,#590000 100%);border-bottom:0;box-shadow:0 5px 18px rgba(0,0,0,.22)}.radio-top-player::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 10% 30%,rgba(255,255,255,.09),transparent 28%),linear-gradient(120deg,rgba(255,255,255,.05),transparent 45%);pointer-events:none}.radio-top-player .player-bar-inner{min-height:112px;padding:18px 24px;gap:34px;position:relative}.player-station-brand{display:flex;align-items:center;gap:15px;min-width:300px;color:#fff}.player-station-brand:hover{color:#fff}.player-station-brand img{width:72px;height:72px;object-fit:contain;border-radius:12px;filter:drop-shadow(0 4px 8px rgba(0,0,0,.28))}.player-station-brand small{display:block;text-transform:uppercase;letter-spacing:3px;font-size:.75rem;opacity:.78;line-height:1}.player-station-brand strong{display:block;font-family:Georgia,serif;font-size:2rem;line-height:1;font-weight:700;text-transform:uppercase}.player-station-brand em{display:block;font-style:normal;font-size:.85rem;font-weight:700;opacity:.95}.brand-icon{width:72px;height:72px;border-radius:14px;background:rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;color:#ffd36b;font-size:2rem}.player-live-copy{min-width:220px}.player-live-copy .player-bar-live,.player-live-copy .player-bar-station{display:inline-flex;margin-right:12px}.player-live-copy p{font-size:.82rem;color:#fff;margin-top:6px;font-weight:700}.radio-top-player .player-bar-controls{flex:1;justify-content:center;max-width:430px}.radio-top-player .btn-play-bar{width:58px;height:58px;background:#ffae17;color:#6c0000;font-size:1.15rem;box-shadow:0 10px 22px rgba(255,174,23,.28)}.radio-top-player .player-bar-volume{max-width:245px}.radio-top-player .player-bar-volume input[type=range]{accent-color:#ffae17}.radio-top-player .player-bar-socials{gap:18px}.radio-top-player .pbar-social{width:46px;height:46px;opacity:1;font-size:1.25rem}.home-redesign{background:#fff;padding:30px 0 36px}.section-title-line{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #eee;margin-bottom:16px}.section-title-line h2{font:800 .92rem var(--font-body);text-transform:uppercase;color:#1d1717;padding-bottom:12px;border-bottom:2px solid #edbd65}.section-title-line h2 i{color:#bd2a12;margin-right:8px}.section-title-line a{font-weight:700;color:#8a231a;font-size:.85rem}.home-top-grid{display:grid;grid-template-columns:minmax(0,1fr) 265px;gap:24px}.home-news-grid{display:grid;grid-template-columns:1.45fr 1fr;gap:20px}.home-featured-news{position:relative;display:block;min-height:395px;border-radius:8px;overflow:hidden;box-shadow:0 14px 28px rgba(0,0,0,.15);background:#2a0303}.home-featured-news img,.home-img-placeholder{width:100%;height:100%;min-height:395px;object-fit:cover}.home-img-placeholder{display:flex;align-items:center;justify-content:center;color:#fff;font-size:4rem;background:linear-gradient(135deg,#890000,#210000)}.home-featured-news::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.15) 36%,rgba(0,0,0,.86))}.home-featured-overlay{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:28px;color:#fff}.home-badge{position:absolute;top:-180px;left:22px;background:#b70000;color:#fff;border-radius:3px;padding:7px 12px;font-weight:900;font-size:.72rem;text-transform:uppercase}.home-featured-overlay strong{display:block;color:#ffb11a;text-transform:uppercase;font-size:.9rem;margin-bottom:6px}.home-featured-overlay h1{font-family:Georgia,serif;font-size:2.05rem;line-height:1.12;margin:0 0 10px;color:#fff}.home-featured-overlay p{font-size:.98rem;color:rgba(255,255,255,.95);line-height:1.45;margin:0 0 12px}.home-meta{display:flex;gap:18px;font-size:.82rem;color:#f3eeee}.home-side-news{display:grid;gap:14px}.home-small-news{display:grid;grid-template-columns:150px 1fr;min-height:122px;background:#fff;border:1px solid #eee;border-radius:8px;overflow:hidden;box-shadow:0 7px 18px rgba(70,20,20,.07);color:#161616}.home-small-news img,.home-small-placeholder{width:150px;height:122px;object-fit:cover;background:#f0e7dd;display:flex;align-items:center;justify-content:center;color:#8a231a}.home-small-news div:last-child{padding:14px 15px}.home-small-news span{display:block;color:#b71117;text-transform:uppercase;font-weight:900;font-size:.72rem;margin-bottom:10px}.home-small-news h3{font-family:Georgia,serif;font-size:1rem;line-height:1.25;color:#171010;margin-bottom:10px}.home-small-news small{font-size:.78rem;color:#654e4e}.home-sidebar{display:grid;gap:13px}.home-onair-card{background:radial-gradient(circle at 50% 32%,#8b1412,#570000 70%);border-radius:8px;color:#fff;padding:20px 16px;text-align:center;box-shadow:0 8px 22px rgba(80,0,0,.2)}.home-onair-card h3{text-transform:uppercase;text-align:left;font-size:.9rem;border-bottom:1px solid rgba(255,255,255,.38);padding-bottom:14px;margin-bottom:18px}.mic-circle{width:112px;height:112px;border:2px solid rgba(248,196,109,.75);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:8px auto 10px;background:rgba(0,0,0,.18);font-size:3rem;color:#ff382d}.home-onair-card span{display:inline-block;background:#ec160f;padding:5px 16px;border-radius:14px;text-transform:uppercase;font-weight:900;font-size:.75rem}.home-onair-card h4{font-family:Georgia,serif;font-size:1.15rem;margin:12px 0 4px}.home-onair-card p{font-size:.82rem;margin-bottom:14px}.home-listen-btn{border:1px solid #ffae17;background:transparent;color:#ffae17;border-radius:999px;padding:9px 18px;text-transform:uppercase;font-weight:900;cursor:pointer}.home-next-card{background:#fff;border:1px solid #eee;border-radius:8px;padding:14px 14px 10px;box-shadow:0 7px 18px rgba(70,20,20,.07)}.home-next-card h3{text-transform:uppercase;font-size:.88rem;margin-bottom:10px}.home-next-card ul{list-style:none}.home-next-card li{display:grid;grid-template-columns:48px 1fr;gap:8px;padding:4px 0;font-size:.84rem}.home-next-card time{color:#8a231a;font-weight:800}.home-next-card strong{font-weight:600}.home-next-card>a{display:block;margin-top:9px;border:1px solid #f1bb62;color:#8a231a;text-transform:uppercase;font-size:.75rem;font-weight:900;text-align:center;border-radius:6px;padding:7px}.muted-mini{font-size:.82rem;color:#766}.home-cards-row{display:grid;grid-template-columns:1.05fr 1.05fr 1fr;gap:18px;margin-top:28px}.home-white-card{background:#fff;border:1px solid #eee;border-radius:9px;box-shadow:0 7px 18px rgba(70,20,20,.07);padding:14px}.mini-card-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}.mini-card-head h3{text-transform:uppercase;font-size:.85rem;color:#171010}.mini-card-head a{font-size:.78rem;color:#8a231a;font-weight:700}.mini-hosts-list{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;text-align:center}.mini-hosts-list a{color:#161616}.mini-hosts-list img,.mini-hosts-list span{width:72px;height:72px;border-radius:50%;margin:0 auto 8px;object-fit:cover;border:3px solid #ad1212;box-shadow:0 4px 10px rgba(0,0,0,.12)}.mini-hosts-list span{display:flex;align-items:center;justify-content:center;background:#f3e9e2;color:#8a231a}.mini-hosts-list strong{display:block;font-size:.82rem}.mini-hosts-list small{display:block;color:#6c5a5a;font-size:.74rem}.home-ad-fallback .ad-block:not(:empty)+.fake-shop-ad{display:none}.fake-shop-ad{height:128px;border-radius:8px;background:linear-gradient(105deg,#6e0906,#971815);color:#fff;display:flex;align-items:center;justify-content:space-between;padding:18px 24px;overflow:hidden}.fake-shop-ad strong{font-family:Georgia,serif;font-size:1.2rem;line-height:1.2}.fake-shop-ad a{display:inline-block;margin-top:13px;background:#ffb13d;color:#fff;border-radius:6px;padding:6px 22px;font-weight:900;text-transform:uppercase}.fake-shop-ad i{font-size:4.4rem;color:#ffd298;opacity:.8}.schedule-callout{display:flex;align-items:center;justify-content:space-between;gap:15px;background:#faf8f4;border-radius:8px;padding:20px}.schedule-callout p{font-size:.88rem;line-height:1.45;margin-bottom:13px}.schedule-callout a{display:inline-block;border:1px solid #d28733;border-radius:999px;padding:7px 16px;color:#8a231a;text-transform:uppercase;font-size:.75rem;font-weight:900}.schedule-callout>i{font-size:4.2rem;color:#efc989}.home-quote{margin-top:18px;background:linear-gradient(90deg,#fff5e6,#fff,#fff5e6);border-radius:8px;padding:20px 30px;text-align:center;color:#ba5a13;position:relative;overflow:hidden}.home-quote p{font-size:1.13rem;font-weight:700;line-height:1.35;margin-bottom:4px}.home-quote strong{color:#58201b}.ad-block iframe,.ad-block img{max-width:100%;height:auto}.footer{margin-top:0}@media(max-width:1050px){.radio-top-player .player-bar-inner{gap:18px}.player-station-brand{min-width:250px}.player-station-brand strong{font-size:1.55rem}.home-top-grid{grid-template-columns:1fr}.home-news-grid{grid-template-columns:1fr}.home-side-news{grid-template-columns:repeat(3,1fr)}.home-small-news{grid-template-columns:1fr}.home-small-news img,.home-small-placeholder{width:100%;height:130px}.home-cards-row{grid-template-columns:1fr 1fr}.home-schedule-card{grid-column:1/-1}}@media(max-width:760px){.radio-top-player .player-bar-inner{display:grid;grid-template-columns:1fr;min-height:auto;text-align:center}.player-station-brand{justify-content:center;min-width:0}.player-live-copy .player-bar-live,.player-live-copy .player-bar-station{justify-content:center}.radio-top-player .player-bar-controls{max-width:none}.radio-top-player .player-bar-socials{justify-content:center;margin:0}.home-redesign{padding-top:18px}.home-featured-news,.home-featured-news img,.home-img-placeholder{min-height:335px}.home-featured-overlay h1{font-size:1.55rem}.home-side-news,.home-cards-row{grid-template-columns:1fr}.mini-hosts-list{grid-template-columns:repeat(3,1fr)}}@media(max-width:520px){.container{padding:0 14px}.player-station-brand img,.brand-icon{width:58px;height:58px}.player-station-brand strong{font-size:1.3rem}.home-small-news{grid-template-columns:112px 1fr}.home-small-news img,.home-small-placeholder{width:112px;height:100%}.mini-hosts-list{grid-template-columns:1fr 1fr 1fr}.mini-hosts-list img,.mini-hosts-list span{width:58px;height:58px}.home-featured-overlay{padding:20px}.home-badge{top:-145px}.home-featured-overlay h1{font-size:1.35rem}.home-featured-overlay p{font-size:.86rem}.home-meta{flex-wrap:wrap;gap:8px}.home-cards-row{margin-top:18px}}

/* Correção: home obedecendo a palheta de cores configurada no painel */
body.palette-padrao,
body.palette-verde,
body.palette-roxo,
body.palette-martir,
body.palette-dourado,
body.palette-natal,
body.palette-quaresma,
body.palette-vermelho {
  background: var(--cream, #fff);
  color: var(--text, #1f1720);
}

.radio-top-player {
  background: linear-gradient(115deg, var(--wine, #7c0000) 0%, var(--wine-light, #8e0201) 38%, var(--wine-dark, #590000) 100%) !important;
}

.pwa-banner {
  background: linear-gradient(90deg, var(--wine-dark, #590000), var(--wine, #8f0705)) !important;
  border-bottom-color: color-mix(in srgb, var(--gold, #ffae17) 45%, transparent) !important;
}

.btn-pwa-install,
.radio-top-player .btn-play-bar {
  background: var(--gold, #ffae17) !important;
  color: var(--wine-dark, #3a0600) !important;
}

.radio-top-player .player-bar-volume input[type=range] {
  accent-color: var(--gold, #ffae17) !important;
}

.home-redesign {
  background: var(--cream, #fff) !important;
  color: var(--text, #1f1720) !important;
}

.section-title-line h2 {
  color: var(--text, #1d1717) !important;
  border-bottom-color: var(--gold-light, #edbd65) !important;
}

.section-title-line h2 i,
.section-title-line a,
.mini-card-head a,
.home-next-card time,
.home-next-card > a,
.schedule-callout a {
  color: var(--wine, #8a231a) !important;
}

.home-featured-news,
.home-img-placeholder {
  background: linear-gradient(135deg, var(--wine, #890000), var(--wine-dark, #210000)) !important;
}

.home-badge,
.home-small-news span,
.mini-hosts-list img,
.mini-hosts-list span {
  border-color: var(--wine-light, #ad1212) !important;
}

.home-badge,
.home-onair-card span {
  background: var(--wine-light, #b70000) !important;
}

.home-featured-overlay strong,
.player-station-brand .brand-icon,
.fake-shop-ad i {
  color: var(--gold, #ffb11a) !important;
}

.home-small-news,
.home-white-card,
.home-next-card {
  background: var(--parchment, #fff) !important;
  color: var(--text, #161616) !important;
  border-color: color-mix(in srgb, var(--wine, #8a231a) 14%, #fff) !important;
}

.home-small-news h3,
.home-small-news div,
.mini-card-head h3,
.home-next-card h3,
.home-next-card strong,
.mini-hosts-list a,
.mini-hosts-list strong {
  color: var(--text, #171010) !important;
}

.home-small-news small,
.muted-mini,
.mini-hosts-list small {
  color: var(--text-muted, #654e4e) !important;
}

.home-onair-card {
  background: radial-gradient(circle at 50% 32%, var(--wine-light, #8b1412), var(--wine-dark, #570000) 72%) !important;
}

.mic-circle {
  border-color: color-mix(in srgb, var(--gold, #f8c46d) 78%, transparent) !important;
  color: var(--gold, #ff382d) !important;
}

.home-listen-btn {
  border-color: var(--gold, #ffae17) !important;
  color: var(--gold, #ffae17) !important;
  background: transparent !important;
}

.home-listen-btn:hover {
  background: var(--gold, #ffae17) !important;
  color: var(--wine-dark, #570000) !important;
}

.fake-shop-ad {
  background: linear-gradient(105deg, var(--wine-dark, #6e0906), var(--wine, #971815)) !important;
}

.fake-shop-ad a {
  background: var(--gold, #ffb13d) !important;
  color: var(--wine-dark, #fff) !important;
}

.schedule-callout {
  background: color-mix(in srgb, var(--gold-light, #faf8f4) 18%, #fff) !important;
}

.schedule-callout > i {
  color: var(--gold-light, #efc989) !important;
}

.home-quote {
  background: linear-gradient(90deg, color-mix(in srgb, var(--gold-light, #fff5e6) 28%, #fff), #fff, color-mix(in srgb, var(--gold-light, #fff5e6) 28%, #fff)) !important;
  color: var(--wine-light, #ba5a13) !important;
}

.home-quote strong {
  color: var(--wine-dark, #58201b) !important;
}
