/* ═══════════════════════════════════════════════════
   Rádio Gospel — Premium Radio UI
   Visual: Dark Luxury Gold — Maximum Impact
═══════════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #7A5F1A;
  --gold-glow:  rgba(201,168,76,0.15);
  --gold-glow2: rgba(201,168,76,0.06);
  --black:      #080808;
  --dark:       #0E0E0E;
  --dark2:      #141414;
  --dark3:      #1C1C1C;
  --dark4:      #242424;
  --gray:       #7A7A7A;
  --gray2:      #444444;
  --white:      #F0EAD6;
  --white2:     #C8C0AC;
  --red:        #E63946;
  --green:      #2DC653;
  --blue:       #4A9EFF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ══ SELECTION ══ */
::selection { background: var(--gold); color: var(--black); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
}

.header-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.header-logo img {
  height: 44px; width: auto; object-fit: contain;
}
.header-logo-fallback {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 4px; color: var(--gold);
  line-height: 1;
}
.logo-freq {
  font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: 5px; color: var(--gray);
  text-transform: uppercase; margin-top: 2px;
}

/* Live indicator in header */
.header-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 2px; color: var(--red);
  text-transform: uppercase; font-weight: 600;
  opacity: 0; transition: opacity 0.5s;
}
.header-live.visible { opacity: 1; }
.header-live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); animation: pulse-red 1.4s infinite;
}
@keyframes pulse-red {
  0%,100%{ box-shadow: 0 0 0 0 rgba(230,57,70,0.7); }
  50%{ box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

/* Now playing mini (header) */
.header-now-playing {
  flex: 1; overflow: hidden; display: none;
}
.header-now-playing.visible { display: block; }
.hnp-scroll {
  font-size: 12px; color: var(--white2); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.hnp-label { font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

nav#main-nav {
  display: flex; gap: 0; align-items: center; margin-left: auto;
}
nav#main-nav a {
  color: var(--gray); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  padding: 8px 14px; position: relative;
  transition: color 0.2s;
}
nav#main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s;
}
nav#main-nav a:hover, nav#main-nav a.active { color: var(--gold); }
nav#main-nav a:hover::after, nav#main-nav a.active::after { transform: scaleX(1); }

.btn-admin-link {
  background: transparent; border: 1px solid var(--gold-dark);
  color: var(--gold); padding: 8px 18px; font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.btn-admin-link:hover { background: var(--gold); color: var(--black); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 5px 0; transition: all 0.3s; }

/* ══════════════════════════════════════
   HERO + PLAYER
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 2rem 4rem;
  position: relative; overflow: hidden;
  background: var(--black);
}

/* Animated background */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-eyebrow {
  font-size: 10px; letter-spacing: 6px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.hero-eyebrow span { color: var(--white2); }

.hero-logo-area {
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.hero-logo-area img {
  max-height: 120px; max-width: 400px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.4));
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 11rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 6px;
  position: relative; z-index: 1;
  text-shadow: 0 0 80px rgba(201,168,76,0.15);
}
.hero-title span { color: var(--gold); }
.hero-freq-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 3px;
  padding: 4px 18px;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.hero-sub {
  font-size: 12px; letter-spacing: 5px; color: var(--gray);
  text-transform: uppercase; margin-bottom: 3rem;
  position: relative; z-index: 1;
}

/* ══ PLAYER CARD ══ */
#player-card {
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 0 60px rgba(201,168,76,0.08), 0 20px 60px rgba(0,0,0,0.6);
  padding: 2rem 2.5rem;
  max-width: 680px; width: 100%;
  position: relative; z-index: 1;
  backdrop-filter: blur(10px);
}
#player-card::before {
  content: '';
  position: absolute; top: 0; left: 2.5rem; right: 2.5rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.player-top {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem;
}

#play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold);
  border: none; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.3s;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
}
#play-btn:hover { transform: scale(1.06); }
#play-btn.playing {
  animation: player-glow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
}
@keyframes player-glow {
  0%,100%{ box-shadow: 0 0 20px rgba(201,168,76,0.4); }
  50%{ box-shadow: 0 0 40px rgba(201,168,76,0.7); }
}
#play-btn svg { width: 22px; height: 22px; fill: var(--black); }

.player-info { flex: 1; overflow: hidden; }
.player-song {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-artist {
  font-size: 11px; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 4px;
}

.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--red); color: var(--red);
  font-size: 9px; letter-spacing: 3px; padding: 4px 10px;
  text-transform: uppercase; font-weight: 700;
  opacity: 0; transition: opacity 0.4s;
}
.live-badge.visible { opacity: 1; animation: pulse-badge 2s infinite; }
.live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* Progress / waveform bar */
.player-wave {
  display: flex; align-items: flex-end; gap: 2px; height: 24px;
  opacity: 0; transition: opacity 0.4s;
}
.player-wave.active { opacity: 1; }
.wave-bar {
  width: 3px; background: var(--gold);
  border-radius: 2px; min-height: 4px;
  animation: wave-anim 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1){ animation-delay: 0s; height: 60%; }
.wave-bar:nth-child(2){ animation-delay: 0.1s; height: 100%; }
.wave-bar:nth-child(3){ animation-delay: 0.2s; height: 40%; }
.wave-bar:nth-child(4){ animation-delay: 0.3s; height: 80%; }
.wave-bar:nth-child(5){ animation-delay: 0.4s; height: 55%; }
.wave-bar:nth-child(6){ animation-delay: 0.15s; height: 90%; }
.wave-bar:nth-child(7){ animation-delay: 0.25s; height: 35%; }
.wave-bar:nth-child(8){ animation-delay: 0.35s; height: 70%; }
@keyframes wave-anim {
  0%,100%{ transform: scaleY(0.4); }
  50%{ transform: scaleY(1); }
}

.player-bottom {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--dark4);
}
.player-vol-wrap { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.player-vol-wrap svg { width: 15px; height: 15px; fill: var(--gray); flex-shrink: 0; }
input[type=range] {
  width: 90px; height: 3px; accent-color: var(--gold);
  cursor: pointer;
}
.player-status {
  font-size: 10px; letter-spacing: 2px; color: var(--gray);
  text-transform: uppercase;
}
.player-status.on { color: var(--green); }

/* Scroll cue */
.scroll-cue {
  position: relative; z-index: 1; margin-top: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.4;
}
.scroll-cue span { font-size: 9px; letter-spacing: 4px; color: var(--gray); text-transform: uppercase; }
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrolldown 2s infinite; }
@keyframes scrolldown { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ══════════════════════════════════════
   TICKER — Now Playing bar
══════════════════════════════════════ */
#ticker-bar {
  background: var(--gold);
  color: var(--black);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0 3rem;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
}
.ticker-sep { color: rgba(0,0,0,0.3); }
@keyframes ticker-scroll { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section-wrap {
  border-top: 1px solid var(--dark3);
}
.section {
  padding: 5rem 2rem;
  max-width: 1280px; margin: 0 auto;
}

.section-header { margin-bottom: 3rem; }
.section-eyebrow {
  font-size: 9px; letter-spacing: 5px; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 0.5rem;
  font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); font-weight: 400;
  line-height: 1.1;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-line {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1rem;
}
.section-actions { margin-left: auto; }

/* ══ NEWS ══ */
.news-featured { margin-bottom: 2rem; }
.news-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark2); border: 1px solid var(--dark3);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.25s;
  text-decoration: none;
}
.news-featured-card:hover { border-color: var(--gold-dark); }
.news-featured-visual {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark4) 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 260px; position: relative; overflow: hidden;
}
.news-featured-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow2), transparent);
}
.news-featured-visual .big-icon { font-size: 80px; opacity: 0.15; }
.news-featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.news-source-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 600;
}
.news-source-badge .src-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px; background: var(--dark3);
}
.news-card {
  background: var(--dark2); padding: 1.75rem;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: block;
}
.news-card--has-img {
  padding: 0;
  overflow: hidden;
}
.news-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark3);
}
.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-body {
  padding: 1.25rem 1.75rem 1.75rem;
}
.news-card:hover { background: var(--dark3); }
.news-card--has-img:hover { background: var(--dark2); }
.news-cat {
  font-size: 9px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem;
}
.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--white);
  line-height: 1.4; margin-bottom: 0.75rem;
}
.news-text { font-size: 13px; color: var(--gray); line-height: 1.7; }
.news-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 1.25rem;
}
.news-date { font-size: 10px; color: var(--gray2); letter-spacing: 1px; }
.news-src { font-size: 9px; color: var(--gold-dark); letter-spacing: 2px; text-transform: uppercase; }
.news-link-icon { margin-left: auto; color: var(--gold-dark); font-size: 12px; }

/* RSS badge */
.rss-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,76,0.08); border: 1px solid var(--gold-dark);
  color: var(--gold); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; cursor: pointer;
  transition: all 0.2s;
}
.rss-badge:hover { background: var(--gold); color: var(--black); }
.rss-badge.loading { opacity: 0.6; pointer-events: none; }

/* ══ PROGRAMS ══ */
.programs-list { display: flex; flex-direction: column; }
.program-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--dark3);
  transition: padding-left 0.2s;
}
.program-row:hover { padding-left: 8px; }
.program-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--gold); letter-spacing: 1px;
}
.program-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--white);
}
.program-host { font-size: 12px; color: var(--gray); margin-top: 3px; }
.program-days {
  font-size: 10px; color: var(--gray2);
  letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
}

/* ══ PODCAST ══ */
.podcast-list { display: flex; flex-direction: column; gap: 1px; }
.podcast-card {
  background: var(--dark2);
  display: grid; grid-template-columns: 52px 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.podcast-card:hover { border-left-color: var(--gold); background: var(--dark3); }
.podcast-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--dark4); line-height: 1;
  text-align: center; transition: color 0.2s;
}
.podcast-card:hover .podcast-num { color: var(--gold-dark); }
.podcast-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: var(--white); margin-bottom: 5px;
}
.podcast-meta { font-size: 11px; color: var(--gray); letter-spacing: 1px; }
.btn-play-ep {
  background: transparent; border: 1px solid var(--gold-dark);
  color: var(--gold); padding: 8px 18px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-play-ep:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-play-ep:disabled { opacity: 0.3; pointer-events: none; }

/* ══ GALLERY ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 1; background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden; position: relative;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(0.97); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.74));
}
.gallery-item-inner { text-align: center; position: relative; z-index: 1; }
.gallery-icon { font-size: 36px; margin-bottom: 8px; filter: grayscale(0.3); }
.gallery-label {
  font-size: 10px; letter-spacing: 2px; color: #fff;
  text-transform: uppercase; font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  padding: 0 8px;
}

/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }

.contact-info-block { margin-bottom: 2.5rem; }
.contact-label {
  font-size: 9px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 8px;
}
.contact-val { font-size: 15px; color: var(--white2); line-height: 1.8; }
.contact-val a { color: var(--gold); text-decoration: none; }

/* Social icons */
.social-links { display: flex; gap: 12px; margin-top: 2rem; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid var(--dark4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 16px; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow2); }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-size: 9px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  background: var(--dark3); border: 1px solid var(--dark4);
  color: var(--white); padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  width: 100%; outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold-dark);
}
.field textarea { resize: vertical; min-height: 100px; }

.btn-gold {
  background: var(--gold); color: var(--black);
  border: none; padding: 13px 28px;
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; border: 1px solid var(--gold-dark);
  color: var(--gold); padding: 9px 18px;
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.15s;
}
.btn-ghost:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.btn-danger {
  background: transparent; border: 1px solid rgba(230,57,70,0.4);
  color: var(--red); padding: 9px 18px;
  font-family: 'Inter', sans-serif; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.15s;
}
.btn-danger:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.btn-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
.form-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 1.25rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--dark3);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 4px; color: var(--gold);
}
.footer-tagline { font-size: 12px; color: var(--gray); margin-top: 6px; letter-spacing: 2px; }
.footer-col-title {
  font-size: 9px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark3); padding-top: 1.5rem;
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: var(--gray2); letter-spacing: 1px; }

/* ══════════════════════════════════════
   LOADING & TOAST
══════════════════════════════════════ */
.loading {
  text-align: center; padding: 4rem 2rem; color: var(--gray);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
.spinner {
  display: inline-block; width: 28px; height: 28px;
  border: 2px solid var(--dark4); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin { to{ transform: rotate(360deg); } }

#toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--dark2); border: 1px solid var(--gold-dark);
  color: var(--white); padding: 1rem 1.5rem;
  font-size: 13px; letter-spacing: 0.5px;
  max-width: 320px; display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#toast.show { display: block; animation: toastIn 0.3s ease; }
#toast.error { border-color: var(--red); color: var(--red); }
#toast.success { border-color: var(--green); }
@keyframes toastIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════
   ADMIN STYLES — Rádio Gospel
══════════════════════════════════════ */
body.admin-body {
  background: linear-gradient(165deg, #0f1b33 0%, #172744 45%, #13213b 100%);
  color: var(--white);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

#admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar-backdrop {
  display: none;
}

#admin-sidebar {
  width: 288px;
  background: linear-gradient(180deg, #162746 0%, #172b4d 55%, #12213d 100%);
  border-right: 1px solid rgba(201, 168, 76, 0.24);
  box-shadow: 6px 0 48px rgba(0, 0, 0, 0.34);
  display: flex; flex-direction: column; flex-shrink: 0;
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 120;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 2rem 1.5rem 1.75rem;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.16) 0%, rgba(61, 132, 198, 0.06) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-logo-img {
  max-height: 48px;
  max-width: 188px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  border-radius: 6px;
}

.sidebar-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  line-height: 1.25;
}

.sidebar-logo-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(200, 206, 220, 0.88);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

.sidebar-section { padding: 1.15rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.sidebar-section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  padding: 0 1.5rem;
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.sidebar-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.82rem 1.5rem 0.82rem 1.35rem;
  margin-right: 10px;
  border-radius: 0 10px 10px 0;
  cursor: pointer; color: rgba(240, 234, 214, 0.88);
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  background: none; width: 100%; text-align: left;
  border-left: 3px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
}

.sidebar-item:hover {
  color: #fff;
  background: rgba(61, 132, 198, 0.2);
}

.sidebar-item.active {
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), rgba(61, 132, 198, 0.15));
  border-left-color: var(--gold);
}

.sidebar-icon { font-size: 18px; width: 26px; text-align: center; opacity: 0.9; }

.sidebar-footer {
  padding: 1.5rem 1.5rem 1.65rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-user {
  font-size: 14px;
  color: rgba(200, 206, 220, 0.92);
  margin-bottom: 14px;
  line-height: 1.45;
}

.admin-sidebar-logout {
  margin-top: 12px;
  width: 100%;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  padding: 11px 16px !important;
}

.online-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); margin-right: 7px;
  box-shadow: 0 0 10px rgba(45, 198, 83, 0.45);
}

#admin-main {
  margin-left: 288px;
  flex: 1;
  min-height: 100vh;
  background: rgba(10, 17, 31, 0.24);
}

.admin-topbar {
  background: rgba(19, 33, 58, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.24);
  padding: 1.25rem 2.25rem 1.35rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  position: sticky; top: 0; z-index: 40;
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.admin-sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.admin-sidebar-toggle:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.45);
}

.admin-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.2;
}

.admin-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
  text-transform: capitalize;
  line-height: 1.4;
  max-width: 280px;
}

#admin-content-area {
  padding: 2.25rem 2.5rem 3.5rem;
  max-width: 1420px;
}

.admin-card {
  background: linear-gradient(165deg, rgba(24, 38, 63, 0.86) 0%, rgba(17, 29, 50, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.85rem 2rem 2rem;
  margin-bottom: 1.65rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.admin-card-title {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #f0d875;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.35;
}

.admin-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.75rem; margin-bottom: 1.5rem; }
.admin-grid3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.35rem; }
.admin-grid4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.35rem; margin-bottom: 1.5rem; }

.stat-card {
  background: linear-gradient(165deg, rgba(27, 42, 69, 0.92) 0%, rgba(18, 30, 52, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.6rem 1.65rem;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.35;
}
.stat-delta { font-size: 13px; color: var(--green); margin-top: 8px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #f0d875;
  text-transform: uppercase;
  font-weight: 700;
}
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(240, 234, 214, 0.92);
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.45;
}
.admin-table td.col-main {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}
.admin-table td.col-cat {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-table tr:hover td { background: rgba(61, 132, 198, 0.14); }

.admin-card .field {
  margin-bottom: 1.35rem;
}

.admin-card .field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  line-height: 1.4;
}

.admin-card .field input,
.admin-card .field textarea,
.admin-card .field select {
  font-size: 16px;
  line-height: 1.45;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 18, 33, 0.78);
}

.admin-card .field textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-card .field input:not([type='checkbox']):not([type='radio']),
.admin-card .field select {
  min-height: 48px;
}

/* Não aplicar estilo de input de texto a checkboxes/radios no admin */
.admin-card .field input[type="checkbox"],
.admin-card .field input[type="radio"] {
  width: auto;
  min-width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  appearance: auto;
  accent-color: var(--gold);
}

.toggle-switch { position: relative; display: inline-block; width: 36px; height: 20px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--dark4); border: 1px solid var(--gray2);
  transition: 0.3s; border-radius: 20px;
}
.toggle-slider::before {
  content: ''; position: absolute; height: 12px; width: 12px;
  left: 3px; bottom: 3px; background: var(--gray);
  transition: 0.3s; border-radius: 50%;
}
input:checked + .toggle-slider { background: var(--gold-dark); border-color: var(--gold); }
input:checked + .toggle-slider::before { transform: translateX(16px); background: var(--gold); }

body.admin-body .toggle-switch {
  width: 44px;
  height: 24px;
}
body.admin-body .toggle-slider {
  border-radius: 24px;
}
body.admin-body .toggle-slider::before {
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
}
body.admin-body input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; }
.status-dot.ok { background: var(--green); box-shadow: 0 0 6px var(--green); }
.status-dot.off { background: var(--gray2); }

/* Upload area */
.upload-area {
  border: 2px dashed var(--dark4);
  padding: 2.75rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  border-radius: 12px;
}
.upload-area:hover { border-color: var(--gold-dark); }
.upload-area p { font-size: 14px; color: rgba(200, 206, 220, 0.95); margin-top: 0.65rem; line-height: 1.5; }

/* Login admin */
body.admin-login-body {
  min-height: 100vh;
  background: linear-gradient(165deg, #06080c 0%, #121820 40%, #07090e 100%);
}

#login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(201, 168, 76, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(74, 158, 255, 0.06), transparent);
}

.login-box {
  background: rgba(18, 20, 26, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 18px;
  padding: 2.75rem 2.35rem;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 4px 0 rgba(201, 168, 76, 0.12),
    0 48px 100px rgba(0, 0, 0, 0.65);
}

.login-brand {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.login-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  line-height: 1.2;
}

.login-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 600;
}

.login-error { color: var(--red); font-size: 12px; margin-bottom: 1rem; display: none; }

.admin-login-body .login-box .field label {
  color: rgba(240, 234, 214, 0.75);
}

.admin-login-body .login-box input {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.85);
}

.admin-login-body .login-box input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.admin-login-body .login-box .btn-gold {
  border-radius: 10px;
  padding: 12px 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.admin-lead-text {
  font-size: 15px;
  color: rgba(200, 206, 220, 0.95);
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.admin-code-inline {
  font-size: 13px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

.admin-details-json {
  border: 1px solid var(--dark3);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.15);
}

.admin-details-json summary {
  cursor: pointer;
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.admin-details-json textarea {
  width: 100%;
  margin-top: 12px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.45;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--dark4);
  background: var(--dark);
  color: var(--white2);
}

/* Botões e grelhas no admin — mais legíveis */
body.admin-body .btn-gold {
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 14px 26px;
}
body.admin-body .btn-ghost,
body.admin-body .btn-danger {
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 12px 20px;
}
body.admin-body .btn-row {
  gap: 12px;
  margin-top: 2px;
}
body.admin-body .form-grid2,
body.admin-body .form-grid3 {
  gap: 1.1rem 1.75rem;
}
body.admin-body #admin-content-area > .loading,
body.admin-body #admin-content-area .loading {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

body.admin-body #toast {
  font-size: 15px;
  line-height: 1.5;
  padding: 1.15rem 1.65rem;
  max-width: 400px;
  letter-spacing: 0.02em;
}

/* Textos de ajuda nas páginas geradas pelo admin.js */
body.admin-body .admin-note {
  font-size: 14px;
  color: rgba(200, 206, 220, 0.94);
  line-height: 1.65;
  margin-bottom: 1.15rem;
}
body.admin-body .admin-note-sm {
  font-size: 13px;
  color: rgba(200, 206, 220, 0.9);
  line-height: 1.55;
}
body.admin-body .admin-help-under-field {
  display: block;
  font-size: 13px;
  color: rgba(200, 206, 220, 0.85);
  margin-top: 8px;
  line-height: 1.5;
}
body.admin-body .admin-table td.admin-td-compact {
  font-size: 14px;
}
body.admin-body .admin-table td.admin-td-nowrap {
  white-space: nowrap;
}

body.admin-body .admin-card label:has(input[type='checkbox']) {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.banner-editor-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.banner-editor-slide {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(12, 14, 18, 0.65);
}

.banner-editor-preview {
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark3);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-editor-preview img {
  width: 100%;
  height: 100%;
  max-height: 140px;
  object-fit: cover;
  display: block;
}

.banner-editor-ph {
  padding: 1.35rem 0.85rem;
  text-align: center;
  color: rgba(200, 206, 220, 0.92);
  font-size: 14px;
  line-height: 1.45;
}

.banner-editor-ph span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray2);
}

.banner-editor-ph small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.92;
  margin-top: 4px;
}

.banner-editor-fields .field {
  margin-bottom: 0.65rem;
}

.banner-editor-fields input[type="file"] {
  font-size: 13px;
  width: 100%;
}

.banner-editor-hint {
  display: block;
  font-size: 12px;
  color: rgba(200, 206, 220, 0.85);
  margin-top: 6px;
  line-height: 1.45;
}

.banner-editor-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.banner-editor-remove {
  margin-top: 10px;
  font-size: 13px;
}

.banner-editor-add {
  width: 100%;
  justify-content: center;
  padding: 12px;
}

@media (max-width: 720px) {
  .banner-editor-slide {
    grid-template-columns: 1fr;
  }

  .banner-editor-row2 {
    grid-template-columns: 1fr;
  }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .news-featured-card { grid-template-columns: 1fr; }
  .news-featured-visual { min-height: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .program-row { grid-template-columns: 70px 1fr; }
  .program-days { display: none; }
  .admin-grid2 { grid-template-columns: 1fr; }

  .admin-sidebar-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  #admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    box-shadow: none;
  }

  #admin-sidebar.open {
    transform: translateX(0);
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.55);
  }

  #admin-main { margin-left: 0; }

  #admin-layout.sidebar-open .admin-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    animation: adminBackdropIn 0.25s ease;
  }

  @keyframes adminBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .form-grid2, .form-grid3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav#main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(8,8,8,0.98); padding: 1rem 0; border-bottom: 1px solid var(--dark3); }
  nav#main-nav.open { display: flex; }
  nav#main-nav a { padding: 12px 2rem; border-bottom: none; }
  nav#main-nav a::after { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 18vw; }
  .player-vol-wrap { display: none; }
  #player-card { padding: 1.5rem; }
  .podcast-card { grid-template-columns: 40px 1fr; }
  .podcast-card .btn-play-ep { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   TEMA GOSPEL — portal inspirado em painéis web rádio (layout demo)
══════════════════════════════════════════════════════════ */
.theme-gospel {
  --g-navy: #1a2744;
  --g-navy2: #243352;
  --g-sky: #3d84c6;
  --g-gold: #c9a227;
  --g-card: #ffffff;
  --g-bg: #e8eef5;
  --g-text: #2b3342;
  --g-muted: #5c6578;
  --g-radius: 14px;
  --g-radius-sm: 10px;
  --g-shadow-card: 0 4px 24px rgba(26, 39, 68, 0.08), 0 1px 3px rgba(26, 39, 68, 0.04);
  --g-shadow-hover: 0 12px 40px rgba(26, 39, 68, 0.12);
  --g-border: rgba(26, 39, 68, 0.1);
  /* Espaço para o player fixo no topo (ajustado em media queries) */
  --gospel-player-offset: 88px;
}

.theme-gospel {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--g-text);
  padding-top: var(--gospel-player-offset);
  scroll-padding-top: calc(var(--gospel-player-offset) + 12px);
  background-color: var(--g-bg);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -15%, rgba(61, 132, 198, 0.14), transparent 52%),
    radial-gradient(ellipse 55% 40% at 100% 20%, rgba(201, 162, 39, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(26, 39, 68, 0.06), transparent 45%);
}

.theme-gospel .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Só o player fica fixo; boas-vindas e menu rolam com a página */
.theme-gospel .gospel-site-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.32);
}

/* Sobrepõe o #site-header genérico (72px / fixed) para o portal Gospel */
.theme-gospel #site-header.gospel-header {
  position: relative;
  height: auto;
  min-height: 147px;
  max-height: none;
  display: block;
  padding: 0;
  background: linear-gradient(165deg, var(--g-navy) 0%, #152038 55%, var(--g-navy2) 100%);
  border-bottom: none;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  overflow: visible;
}

.theme-gospel .gospel-wrap {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.theme-gospel .gospel-topbar {
  background: #121a2e;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: 0.01em;
}

.theme-gospel .gospel-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
}

.theme-gospel .gospel-topbar-brand {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.theme-gospel .gospel-topbar-msg {
  opacity: 0.88;
  font-weight: 500;
  font-size: 11px;
  max-width: 72ch;
  line-height: 1.45;
}

/* Faixa: logo | menu */
.theme-gospel .gospel-menu-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 14px;
  padding: 34px 0 36px;
  min-height: 126px;
  box-sizing: border-box;
}

.theme-gospel .gospel-nav-cluster {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.theme-gospel .gospel-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
}

.theme-gospel .gospel-brand img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.theme-gospel .gospel-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}

.theme-gospel .gospel-brand-text .logo-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.theme-gospel .gospel-brand-text .logo-freq {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-gospel .gospel-btn-admin {
  flex-shrink: 0;
  white-space: nowrap;
}

.theme-gospel .hamburger {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 11px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.theme-gospel .hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.theme-gospel .hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.theme-gospel .hamburger-lines span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.2s;
}

.theme-gospel .hamburger-label {
  font-size: 9px;
}

.theme-gospel nav.gospel-nav-one-line,
.theme-gospel #main-nav.gospel-nav-one-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  padding: 2px 2px 6px;
  -webkit-overflow-scrolling: touch;
}

.theme-gospel nav.gospel-nav-one-line::-webkit-scrollbar {
  height: 5px;
}

.theme-gospel nav.gospel-nav-one-line::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 6px;
}

.theme-gospel nav.gospel-nav-one-line a,
.theme-gospel #main-nav.gospel-nav-one-line a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9px;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.theme-gospel nav.gospel-nav-one-line a span,
.theme-gospel #main-nav.gospel-nav-one-line a span {
  position: relative;
}

.theme-gospel nav.gospel-nav-one-line a:hover,
.theme-gospel #main-nav.gospel-nav-one-line a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.theme-gospel nav.gospel-nav-one-line a.active,
.theme-gospel #main-nav.gospel-nav-one-line a.active {
  color: var(--g-navy);
  background: linear-gradient(180deg, #f0d875 0%, var(--g-gold) 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 3px 12px rgba(201, 162, 39, 0.35);
}

/* Barra do player — primeiro bloco do site (acima do menu) */
.theme-gospel .gospel-player-bar {
  position: relative;
  background: linear-gradient(92deg, #0c1220 0%, #1a2744 38%, #2a4168 100%);
  border-top: none;
  border-bottom: 3px solid var(--g-gold);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.theme-gospel .gospel-player-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 10px 0 11px;
  min-height: 56px;
}

.theme-gospel .gospel-player-bar #play-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0d875, var(--g-gold));
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.45);
  transition: transform 0.15s, box-shadow 0.25s;
}

.theme-gospel .gospel-player-bar #play-btn:hover {
  transform: scale(1.05);
}

.theme-gospel .gospel-player-bar #play-btn.playing {
  animation: gospel-player-pulse 2s ease-in-out infinite;
}

@keyframes gospel-player-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(201, 162, 39, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(201, 162, 39, 0.65); }
}

.theme-gospel .gospel-player-bar #play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--g-navy);
}

.theme-gospel .gospel-player-bar-main {
  flex: 1 1 200px;
  min-width: 0;
}

.theme-gospel .gospel-player-bar-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.theme-gospel .gospel-player-bar .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 107, 107, 0.55);
  color: #ffb4b4;
  opacity: 0;
  transition: opacity 0.35s;
}

.theme-gospel .gospel-player-bar .live-badge.visible {
  opacity: 1;
}

.theme-gospel .gospel-player-bar .live-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: pulse-red 1.4s infinite;
}

.theme-gospel .gospel-player-status-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s;
}

.theme-gospel .gospel-player-status-pill.on {
  color: #6ee7b7;
}

.theme-gospel .gospel-player-bar-song {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-gospel .gospel-player-bar-artist {
  font-size: 12px;
  font-weight: 600;
  color: rgba(186, 212, 255, 0.88);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.theme-gospel .gospel-player-bar-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.35s;
}

.theme-gospel .gospel-player-bar-wave.active {
  opacity: 1;
}

.theme-gospel .gospel-player-bar-wave .wave-bar {
  width: 3px;
  background: linear-gradient(180deg, #93c5fd, var(--g-gold));
  border-radius: 2px;
  min-height: 5px;
}

.theme-gospel .gospel-player-bar-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: min(160px, 100%);
  color: rgba(255, 255, 255, 0.55);
}

.theme-gospel .gospel-player-bar-volume input[type='range'] {
  flex: 1;
  min-width: 80px;
  height: 4px;
  accent-color: var(--g-gold);
  cursor: pointer;
}

.theme-gospel .btn-admin-link {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.theme-gospel .btn-admin-link:hover {
  background: var(--g-gold);
  color: var(--g-navy);
  border-color: var(--g-gold);
}

.theme-gospel .gospel-main,
.theme-gospel .gospel-sidebar {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.theme-gospel .gospel-page {
  padding: 1.5rem 0 3.5rem;
}

.theme-gospel .gospel-layout {
  display: grid;
  grid-template-columns: 1fr 316px;
  gap: 1.5rem;
  align-items: start;
}

.theme-gospel .gospel-main {
  min-width: 0;
}

.theme-gospel .gospel-sidebar {
  position: sticky;
  top: calc(var(--gospel-player-offset) + 12px);
}

.theme-gospel .gospel-panel {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 1.25rem 1.35rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--g-shadow-card);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.theme-gospel .gospel-panel:hover {
  box-shadow: var(--g-shadow-hover);
}

.theme-gospel .gospel-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
}

.theme-gospel .gospel-panel-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--g-navy);
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
  line-height: 1.25;
}

.theme-gospel .gospel-panel-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f0d875 0%, var(--g-gold) 55%, #a8841c 100%);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
}

.theme-gospel .gospel-panel-head .gospel-panel-title {
  margin-bottom: 0;
}

.theme-gospel .gospel-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g-navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(61, 132, 198, 0.35);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 10px rgba(61, 132, 198, 0.08);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
}

.theme-gospel .gospel-see-all:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--g-sky), #2563a8);
  border-color: transparent;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Carrossel de banners — home */
.theme-gospel .gospel-banner-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 16px;
}

.theme-gospel .gospel-banner-shell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.15);
  border: 1px solid rgba(26, 39, 68, 0.12);
}

.theme-gospel .gospel-banner-shell--ads {
  box-shadow: 0 8px 26px rgba(26, 39, 68, 0.12);
}

.theme-gospel .gospel-banner-carousel--ads {
  aspect-ratio: 3 / 1;
  min-height: 180px;
  max-height: 360px;
}

.theme-gospel .gospel-banner-carousel {
  position: relative;
  aspect-ratio: 21 / 8;
  min-height: 200px;
  max-height: 400px;
  background: var(--g-navy);
}

.theme-gospel .gospel-banner-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.theme-gospel .gospel-banner-empty {
  margin: 0;
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.theme-gospel .gospel-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
  z-index: 0;
}

.theme-gospel .gospel-banner-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.theme-gospel .gospel-banner-slide--ads {
  padding: 14px;
}

.theme-gospel .gospel-ad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

@media (max-width: 980px) {
  .theme-gospel .gospel-banner-carousel--ads {
    aspect-ratio: 2 / 1;
  }
  .theme-gospel .gospel-ad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .theme-gospel .gospel-banner-carousel--ads {
    aspect-ratio: 1 / 1;
    min-height: 220px;
  }
  .theme-gospel .gospel-ad-grid {
    grid-template-columns: 1fr;
  }
}

.theme-gospel .gospel-ad-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(3, 8, 20, 0.28);
}

.theme-gospel .gospel-ad-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.theme-gospel .gospel-banner-media-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.theme-gospel .gospel-banner-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.theme-gospel .gospel-banner-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
}

.theme-gospel .gospel-banner-fallback--1 {
  background: linear-gradient(135deg, #1a2744 0%, #3d84c6 55%, #2563a8 100%);
}

.theme-gospel .gospel-banner-fallback--2 {
  background: linear-gradient(135deg, #2d1f4e 0%, #5c3d9e 45%, var(--g-navy) 100%);
}

.theme-gospel .gospel-banner-fallback--3 {
  background: linear-gradient(135deg, #0f3d3e 0%, #1e6f5c 50%, var(--g-navy2) 100%);
}

.theme-gospel .gospel-banner-fallback-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.theme-gospel .gospel-banner-fallback-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 22ch;
}

.theme-gospel .gospel-banner-fallback-sub {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  opacity: 0.92;
  max-width: 36ch;
  line-height: 1.45;
}

.theme-gospel .gospel-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--g-navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.15s;
}

.theme-gospel .gospel-banner-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.theme-gospel .gospel-banner-prev {
  left: 12px;
}

.theme-gospel .gospel-banner-next {
  right: 12px;
}

.theme-gospel .gospel-banner-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
  border-top: 1px solid #e4eaf3;
}

.theme-gospel .gospel-banner-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #c5cedd;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.theme-gospel .gospel-banner-dot:hover {
  border-color: var(--g-sky);
}

.theme-gospel .gospel-banner-dot.active {
  background: var(--g-gold);
  border-color: #b8922a;
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .theme-gospel .gospel-banner-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .theme-gospel .gospel-banner-prev {
    left: 6px;
  }
  .theme-gospel .gospel-banner-next {
    right: 6px;
  }
}

.theme-gospel .gospel-ticker {
  background: linear-gradient(92deg, #152038 0%, var(--g-navy) 35%, var(--g-sky) 100%);
  color: #fff;
  border-radius: var(--g-radius-sm);
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid var(--g-gold);
  box-shadow: 0 8px 28px rgba(26, 39, 68, 0.18);
}

.theme-gospel .gospel-ticker .ticker-inner {
  animation-duration: 35s;
  padding: 12px 18px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.theme-gospel .gospel-ticker .ticker-item {
  color: rgba(255, 255, 255, 0.95);
}

.theme-gospel .gospel-muted {
  color: var(--g-muted);
  font-size: 13px;
}

.theme-gospel .gospel-gallery-compact {
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.theme-gospel .gospel-videos-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.theme-gospel .gospel-video-thumb {
  flex: 1 1 150px;
  min-width: 130px;
}

.theme-gospel .gospel-video-thumb-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--g-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px;
  margin: -10px;
  border-radius: var(--g-radius-sm);
  transition: background 0.2s, transform 0.2s;
}

.theme-gospel .gospel-video-thumb-link:hover {
  background: rgba(61, 132, 198, 0.06);
  transform: translateY(-2px);
}

.theme-gospel .gospel-video-thumb img {
  width: 100%;
  border-radius: var(--g-radius-sm);
  border: 1px solid var(--g-border);
  box-shadow: 0 6px 20px rgba(26, 39, 68, 0.1);
  transition: box-shadow 0.25s;
}

.theme-gospel .gospel-video-thumb-link:hover img {
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.16);
}

.theme-gospel .gospel-news-compact .news-card {
  padding: 1rem;
}
.theme-gospel .gospel-news-compact .news-card--has-img {
  padding: 0;
}
.theme-gospel .gospel-news-compact .news-card-thumb {
  aspect-ratio: 16 / 9;
  max-height: 160px;
}
.theme-gospel .gospel-news-compact .news-card-body {
  padding: 0.85rem 1rem 1rem;
}

.theme-gospel .gospel-widget {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 0;
  margin-bottom: 1rem;
  font-size: 13px;
  box-shadow: var(--g-shadow-card);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}

.theme-gospel .gospel-widget:hover {
  box-shadow: var(--g-shadow-hover);
}

.theme-gospel .gospel-widget-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, var(--g-navy) 0%, #243352 45%, var(--g-navy2) 100%);
  border-bottom: 3px solid var(--g-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.theme-gospel .gospel-widget > *:not(.gospel-widget-title) {
  padding-left: 16px;
  padding-right: 16px;
}

.theme-gospel .gospel-widget > *:last-child {
  padding-bottom: 16px;
}

.theme-gospel .gospel-widget > .gospel-widget-title + * {
  padding-top: 4px;
}

.theme-gospel .gospel-clock-widget .gospel-clock {
  padding-bottom: 16px;
}

.theme-gospel .gospel-tag {
  float: right;
  font-size: 9px;
  font-weight: 800;
  color: #f0d875;
  letter-spacing: 0.06em;
}

.theme-gospel .gospel-widget-text {
  color: var(--g-muted);
  margin-bottom: 10px;
  line-height: 1.55;
}

.theme-gospel .gospel-widget-text a {
  font-weight: 700;
  color: var(--g-sky);
  text-decoration: none;
  border-bottom: 2px solid rgba(61, 132, 198, 0.25);
  transition: border-color 0.2s, color 0.2s;
}

.theme-gospel .gospel-widget-text a:hover {
  color: var(--g-navy);
  border-bottom-color: var(--g-gold);
}

.theme-gospel .gospel-verse-widget .gospel-verse-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--g-navy);
  font-style: italic;
}

.theme-gospel .gospel-verse-widget .gospel-verse-ref {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--g-gold);
}

.theme-gospel .gospel-mini-form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-navy);
  opacity: 0.85;
}

.theme-gospel .gospel-mini-form input,
.theme-gospel .gospel-mini-form textarea {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--g-radius-sm);
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(26, 39, 68, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.theme-gospel .gospel-mini-form input:focus,
.theme-gospel .gospel-mini-form textarea:focus {
  outline: none;
  border-color: rgba(61, 132, 198, 0.55);
  box-shadow: 0 0 0 3px rgba(61, 132, 198, 0.15);
}

.theme-gospel .gospel-btn-full {
  width: 100%;
  margin-top: 6px;
  border-radius: var(--g-radius-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}

.theme-gospel .gospel-btn-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.theme-gospel .gospel-stat-line {
  margin: 10px 0;
  color: var(--g-muted);
  font-size: 13px;
}

.theme-gospel .gospel-stat-line strong {
  color: var(--g-navy);
  font-weight: 800;
}

.theme-gospel .gospel-quote-list {
  list-style: none;
  margin-top: 8px;
  padding: 0;
}

.theme-gospel .gospel-quote-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(26, 39, 68, 0.07);
  font-size: 12px;
  line-height: 1.45;
}

.theme-gospel .gospel-quote-list.large li {
  padding: 14px 0;
}

.theme-gospel .gospel-quote-list strong {
  display: block;
  color: var(--g-navy);
  margin-bottom: 4px;
}

.theme-gospel .gospel-quote-list span {
  color: var(--g-muted);
}

.theme-gospel .gospel-clock {
  font-size: 1.85rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--g-navy);
  text-align: center;
  padding-top: 8px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.theme-gospel .gospel-mural-list {
  list-style: none;
  padding: 0;
  margin-top: 4px;
}

.theme-gospel .gospel-mural-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(26, 39, 68, 0.07);
  font-size: 12px;
  line-height: 1.45;
}

.theme-gospel .gospel-top-music {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-gospel .gospel-top-music li {
  display: grid;
  grid-template-columns: 22px 1fr 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid #eef2f8;
  font-size: 12px;
}

.theme-gospel .tm-num {
  font-weight: 800;
  color: var(--g-gold);
}

.theme-gospel .tm-art {
  color: var(--g-navy);
  font-weight: 600;
}

.theme-gospel .tm-title {
  color: var(--g-muted);
}

.theme-gospel .gospel-listener strong {
  color: var(--g-navy);
  font-size: 1.05rem;
}

.theme-gospel .gospel-listener p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.theme-gospel .gospel-listener p:last-child {
  margin-bottom: 0;
}

.theme-gospel .gospel-poll-q {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--g-navy);
  line-height: 1.45;
}

.theme-gospel .gospel-poll-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: var(--g-radius-sm);
  border: 1px solid rgba(26, 39, 68, 0.08);
  background: #fff;
  box-shadow: 0 1px 4px rgba(26, 39, 68, 0.05);
  transition: border-color 0.2s, background 0.2s;
}

.theme-gospel .gospel-poll-opt:hover {
  border-color: rgba(61, 132, 198, 0.35);
  background: rgba(61, 132, 198, 0.04);
}

.theme-gospel .gospel-inner-page {
  padding: 1.75rem 0 3.5rem;
}

.theme-gospel .gospel-page-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.05rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.35rem;
  padding: 1.15rem 1.35rem 1.35rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--g-radius);
  background: linear-gradient(135deg, var(--g-navy) 0%, #243352 50%, var(--g-navy2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid var(--g-gold);
  box-shadow: 0 10px 36px rgba(26, 39, 68, 0.2);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.theme-gospel .gospel-inner-page .gospel-panel-head .gospel-page-title {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin-bottom: 0;
  padding: 12px 18px;
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
}

.theme-gospel .gospel-inner-page .gospel-panel-head {
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  border-bottom: none;
  gap: 12px;
}

.theme-gospel .gospel-lead {
  color: var(--g-muted);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 500;
}

.theme-gospel .gospel-prose {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 1.65rem 1.75rem;
  line-height: 1.75;
  box-shadow: var(--g-shadow-card);
}

.theme-gospel .gospel-form-page .field label {
  color: var(--g-navy);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-gospel .gospel-form-page input,
.theme-gospel .gospel-form-page textarea {
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--g-radius-sm);
  background: #fff;
  color: var(--g-text);
  padding: 12px 14px;
  box-shadow: inset 0 1px 2px rgba(26, 39, 68, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.theme-gospel .gospel-form-page input:focus,
.theme-gospel .gospel-form-page textarea:focus {
  outline: none;
  border-color: rgba(61, 132, 198, 0.55);
  box-shadow: 0 0 0 3px rgba(61, 132, 198, 0.15);
}

.theme-gospel .gospel-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.theme-gospel .gospel-video-card {
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  overflow: hidden;
  padding-bottom: 14px;
  box-shadow: var(--g-shadow-card);
  transition: box-shadow 0.25s, transform 0.2s;
}

.theme-gospel .gospel-video-frame-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #d9e0ea;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.theme-gospel .gospel-video-frame-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.theme-gospel .gospel-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 17, 32, 0.78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.theme-gospel .gospel-video-card:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateY(-3px);
}

.theme-gospel .gospel-video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.theme-gospel .gospel-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.theme-gospel .gospel-video-placeholder {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #eef2f8;
  color: var(--g-sky);
}

.theme-gospel .gospel-video-card h3 {
  padding: 10px 14px 4px;
  font-size: 1rem;
  color: var(--g-navy);
}

.theme-gospel .gospel-video-card .gospel-muted,
.theme-gospel .gospel-video-card a {
  padding: 0 14px;
  font-size: 12px;
}

.theme-gospel .gospel-video-open {
  display: inline-flex;
  margin: 8px 14px 0;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(61, 132, 198, 0.08);
  color: var(--g-navy);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.gospel-video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}
.gospel-video-modal.open {
  display: block;
}
.gospel-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 16, 0.72);
}
.gospel-video-modal-dialog {
  position: relative;
  width: min(980px, 96vw);
  margin: 4vh auto 0;
  z-index: 1;
}
.gospel-video-modal-frame {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  aspect-ratio: 16 / 9;
}
.gospel-video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.gospel-video-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.theme-gospel .gospel-locutores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.theme-gospel .gospel-locutor-card {
  background: linear-gradient(165deg, #ffffff 0%, #f5f8fc 100%);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 1.35rem 1.15rem;
  text-align: center;
  box-shadow: var(--g-shadow-card);
  transition: box-shadow 0.25s, transform 0.2s;
}

.theme-gospel .gospel-locutor-card:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateY(-2px);
}

.theme-gospel .gospel-locutor-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g-sky), var(--g-navy));
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(61, 132, 198, 0.35);
  border: 3px solid rgba(240, 216, 117, 0.85);
}

.theme-gospel .gospel-locutor-card h3 {
  font-size: 1.05rem;
  color: var(--g-navy);
}

.theme-gospel .gospel-locutor-card p {
  font-size: 12px;
  color: var(--g-muted);
}

.theme-gospel .news-grid {
  gap: 12px;
  background: transparent;
}

.theme-gospel .news-card {
  background: linear-gradient(165deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-sm);
  transition: box-shadow 0.25s, transform 0.2s;
}

.theme-gospel .news-card:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateY(-2px);
}
.theme-gospel .news-card--has-img {
  padding: 0;
}
.theme-gospel .news-card-thumb {
  border-radius: var(--g-radius-sm) var(--g-radius-sm) 0 0;
  background: #e8edf5;
}

.theme-gospel .gallery-grid {
  gap: 12px;
}
.theme-gospel .news-card-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.theme-gospel .news-cat {
  color: var(--g-sky);
}

.theme-gospel .news-title {
  color: var(--g-navy);
}

.theme-gospel .news-text {
  color: var(--g-muted);
}

.theme-gospel .programs-list .program-row {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, #f8fafc 100%);
  border: 1px solid var(--g-border);
  border-bottom: none;
  border-left: 4px solid var(--g-gold);
  border-radius: var(--g-radius-sm);
  margin-bottom: 10px;
  padding: 16px 18px;
  box-shadow: var(--g-shadow-card);
  transition: box-shadow 0.25s, transform 0.2s, border-left-color 0.2s;
}

.theme-gospel .programs-list .program-row:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateX(3px);
  border-left-color: var(--g-sky);
}

.theme-gospel .program-time {
  color: var(--g-gold);
}

.theme-gospel .program-name {
  color: var(--g-navy);
}

.theme-gospel .gallery-grid .gallery-item {
  border-radius: var(--g-radius-sm);
  border: 1px solid var(--g-border);
  overflow: hidden;
  box-shadow: var(--g-shadow-card);
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
  isolation: isolate;
}

.theme-gospel .gallery-grid .gallery-item:hover {
  box-shadow: var(--g-shadow-hover);
  transform: translateY(-2px);
}

.theme-gospel .gallery-label {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.theme-gospel .gallery-grid .gallery-icon {
  font-size: 34px;
  margin-bottom: 10px;
  filter: none;
}

.theme-gospel .gallery-grid .gallery-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.theme-gospel .gallery-grid .gallery-item--clickable {
  cursor: zoom-in;
}

.gospel-gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2100;
}

.gospel-gallery-modal.open {
  display: block;
}

.gospel-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 16, 0.8);
}

.gospel-gallery-modal-dialog {
  position: relative;
  width: min(96vw, 1040px);
  max-height: 90vh;
  margin: 5vh auto 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gospel-gallery-modal-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
  background: #fff;
}

.gospel-gallery-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.theme-gospel .gallery-grid .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.theme-gospel .gallery-grid .gallery-item.gallery-theme-louvor::before { background: linear-gradient(135deg, #2a3f6e, #3d84c6); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-culto::before { background: linear-gradient(135deg, #334155, #64748b); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-estudio::before { background: linear-gradient(135deg, #1f2937, #111827); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-evento::before { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-bastidores::before { background: linear-gradient(135deg, #0f766e, #155e75); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-igreja::before { background: linear-gradient(135deg, #7c2d12, #b45309); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-adoracao::before { background: linear-gradient(135deg, #4c1d95, #6d28d9); }
.theme-gospel .gallery-grid .gallery-item.gallery-theme-comunidade::before { background: linear-gradient(135deg, #065f46, #0ea5e9); }

.theme-gospel .rss-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(61, 132, 198, 0.45);
  color: var(--g-navy);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 10px rgba(61, 132, 198, 0.12);
  transition: transform 0.15s, box-shadow 0.2s;
}

.theme-gospel .rss-badge:hover {
  background: linear-gradient(135deg, var(--g-sky), #2563a8);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}

.theme-gospel .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(61, 132, 198, 0.45);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--g-navy);
  background: rgba(255, 255, 255, 0.9);
  transition: color 0.2s, background 0.2s, transform 0.15s;
}

.theme-gospel .btn-ghost:hover {
  background: linear-gradient(135deg, var(--g-sky), #2563a8);
  color: #fff;
  transform: translateY(-1px);
}

.theme-gospel .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(145deg, #f0d875 0%, var(--g-gold) 45%, #b8922a 100%);
  color: var(--g-navy);
  border: none;
  border-radius: var(--g-radius-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.38);
  transition: transform 0.15s, box-shadow 0.2s;
}

.theme-gospel .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.48);
}

.theme-gospel .gospel-footer {
  background: linear-gradient(180deg, #121a2e 0%, var(--g-navy) 40%, #152038 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.75rem 0 1.25rem;
  margin-top: 2.5rem;
  border-top: 3px solid var(--g-gold);
  box-shadow: 0 -12px 40px rgba(26, 39, 68, 0.15);
}

.theme-gospel .footer-brand {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}

.theme-gospel .gospel-footer-tag {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 6px;
}

.theme-gospel .gospel-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.theme-gospel .gospel-footer .footer-col-title {
  color: var(--g-gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.theme-gospel .gospel-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 2px 14px;
}

.theme-gospel .gospel-footer .footer-links li {
  margin: 0;
}

.theme-gospel .gospel-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.theme-gospel .gospel-footer .footer-links a:hover {
  color: #fff;
  border-bottom-color: var(--g-gold);
}

.theme-gospel .gospel-footer-note {
  font-size: 13px;
  opacity: 0.8;
}

.theme-gospel .gospel-footer-keywords {
  font-size: 10px;
  opacity: 0.45;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 12px;
  margin-bottom: 12px;
}

.theme-gospel .gospel-footer .footer-bottom {
  border-top: none;
  padding-top: 0;
  justify-content: center;
  text-align: center;
}

.theme-gospel .gospel-footer .footer-bottom span {
  font-size: 12px;
  opacity: 0.85;
}

.theme-gospel .social-btn {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.theme-gospel .gospel-footer-social {
  margin-top: 10px;
}

.theme-gospel .gospel-footer-social .social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.theme-gospel .gospel-footer-social .social-btn svg {
  width: 19px;
  height: 19px;
  display: block;
}

.theme-gospel .gospel-wa-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.theme-gospel .gospel-wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.theme-gospel .gospel-wa-float .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.theme-gospel .gospel-wa-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.theme-gospel #toast {
  background: var(--g-card);
  color: var(--g-navy);
  border-color: var(--g-sky);
}

@media (max-width: 960px) {
  .theme-gospel .gospel-layout {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .theme-gospel .gospel-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    min-width: 0;
    align-self: stretch;
  }
  .theme-gospel .gospel-sidebar > .gospel-widget {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .theme-gospel .gospel-widget {
    margin-bottom: 0;
  }
  .theme-gospel .gospel-footer-grid {
    grid-template-columns: 1fr;
  }
  .theme-gospel .gospel-footer .footer-links {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

.theme-gospel .gospel-inner-panel {
  margin-top: 2rem;
  padding: 1.35rem 1.45rem 1.45rem;
}

.theme-gospel .gospel-inner-panel .gospel-panel-head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
}

.theme-gospel ul.gospel-prayer-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-gospel .gospel-prayer-page-item {
  padding: 1.15rem 1.25rem;
  margin-bottom: 10px;
  border-bottom: none;
  border-radius: var(--g-radius-sm);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--g-border);
  box-shadow: var(--g-shadow-card);
}

.theme-gospel .gospel-prayer-page-item:last-child {
  border-bottom: none;
}

.theme-gospel .gospel-prayer-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.theme-gospel .gospel-prayer-page-head time {
  font-size: 11px;
  color: var(--g-muted);
}

.theme-gospel .gospel-prayer-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--g-text);
  white-space: pre-wrap;
}

.theme-gospel .gospel-mural-para {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: var(--g-sky);
  margin: 2px 0 4px;
}

.theme-gospel .gospel-mural-msg {
  display: block;
  color: var(--g-muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .theme-gospel {
    --gospel-player-offset: 108px;
  }

  .theme-gospel #site-header.gospel-header {
    min-height: 98px;
  }

  .theme-gospel .gospel-menu-strip {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 6px 8px;
    column-gap: 10px;
    padding: 20px 0 21px;
    min-height: 84px;
  }

  .theme-gospel .gospel-brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .theme-gospel .gospel-brand img {
    max-height: 94px;
  }

  .theme-gospel .gospel-btn-admin {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding: 7px 12px;
    font-size: 10px;
  }

  .theme-gospel .hamburger {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    padding: 7px 10px;
  }

  .theme-gospel .gospel-nav-cluster {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    justify-content: stretch;
    background: linear-gradient(165deg, rgba(21, 32, 56, 0.97) 0%, rgba(26, 39, 68, 0.94) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--g-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .theme-gospel .gospel-nav-cluster.is-open {
    display: flex;
  }

  .theme-gospel nav.gospel-nav-one-line,
  .theme-gospel #main-nav.gospel-nav-one-line {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: visible;
    width: 100%;
    gap: 8px;
    padding: 0;
  }

  .theme-gospel nav.gospel-nav-one-line a,
  .theme-gospel #main-nav.gospel-nav-one-line a {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    border-radius: var(--g-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
  }

  .theme-gospel nav.gospel-nav-one-line a:hover,
  .theme-gospel #main-nav.gospel-nav-one-line a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .theme-gospel nav.gospel-nav-one-line a.active,
  .theme-gospel #main-nav.gospel-nav-one-line a.active {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 18px rgba(201, 162, 39, 0.28);
  }

  .theme-gospel .gospel-player-bar-inner {
    gap: 10px;
  }

  .theme-gospel .gospel-player-bar #play-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .theme-gospel .gospel-player-bar-wave {
    flex-basis: 100%;
    order: 4;
    justify-content: center;
    margin-top: 4px;
  }

  .theme-gospel .gospel-player-bar-volume {
    flex: 1 1 140px;
    margin-left: auto;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .theme-gospel {
    --gospel-player-offset: 132px;
  }

  .theme-gospel .gospel-player-bar-main {
    flex-basis: calc(100% - 58px);
  }

  .theme-gospel .gospel-player-bar-volume {
    flex-basis: 100%;
    margin-left: 0;
  }
}

/* HOME (Fotos): legenda sempre visível */
.theme-gospel #gallery-grid-home .gallery-item {
  position: relative !important;
  overflow: hidden !important;
}

/* evita sobreposição de camadas antigas */
.theme-gospel #gallery-grid-home .gallery-item::after {
  display: none !important;
}

.theme-gospel #gallery-grid-home .gallery-item-inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
}

.theme-gospel #gallery-grid-home .gallery-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  border-radius: 10px !important;
}

/* legenda fixa no rodapé */
.theme-gospel #gallery-grid-home .gallery-label {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 5 !important;
  display: block !important;
  padding: 8px !important;
  margin: 0 !important;
  color: #fff !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15)) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ==========================================================
   REFRESH VISUAL (menus/widgets) - sem alterar header/player
========================================================== */

/* Widgets com linguagem mais atual: borda suave, profundidade e ritmo */
.theme-gospel .gospel-sidebar .gospel-widget {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(26, 39, 68, 0.12);
  box-shadow: 0 10px 26px rgba(26, 39, 68, 0.08), 0 2px 8px rgba(26, 39, 68, 0.05);
}

.theme-gospel .gospel-sidebar .gospel-widget::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g-gold) 0%, var(--g-sky) 100%);
}

.theme-gospel .gospel-sidebar .gospel-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(26, 39, 68, 0.13), 0 2px 8px rgba(26, 39, 68, 0.06);
}

.theme-gospel .gospel-sidebar .gospel-widget-title {
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 14px 16px 11px;
  background: linear-gradient(135deg, #1a2744 0%, #243352 60%, #2d3f63 100%);
}

/* Inputs dos widgets com pegada mais "app card" */
.theme-gospel .gospel-sidebar .gospel-mini-form input,
.theme-gospel .gospel-sidebar .gospel-mini-form textarea {
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.theme-gospel .gospel-sidebar .gospel-mini-form textarea {
  min-height: 88px;
}

/* Menu/itens de lista internos dos widgets */
.theme-gospel .gospel-sidebar .gospel-quote-list li,
.theme-gospel .gospel-sidebar .gospel-mural-list li,
.theme-gospel .gospel-sidebar .gospel-top-music li {
  border-top-color: rgba(26, 39, 68, 0.1);
}

.theme-gospel .gospel-sidebar .gospel-top-music li {
  grid-template-columns: 26px 1fr 1fr;
  gap: 10px;
  padding: 9px 0;
}

.theme-gospel .gospel-sidebar .tm-num {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: rgba(201, 162, 39, 0.14);
}

/* Links de ação dentro dos widgets */
.theme-gospel .gospel-sidebar .gospel-widget-text a {
  border-bottom-width: 1px;
}

/* Menu do rodape com visual mais moderno e "clicavel" */
.theme-gospel .gospel-footer .footer-links {
  gap: 8px 10px;
}

.theme-gospel .gospel-footer .footer-links a {
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.theme-gospel .gospel-footer .footer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: transparent;
  border-color: rgba(240, 216, 117, 0.5);
}

/* ==========================================================
   AJUSTE FINO VISIVEL - menus/widgets (sem header/player)
========================================================== */

@media (min-width: 961px) {
  .theme-gospel .gospel-layout {
    gap: 1.75rem !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
  }

  .theme-gospel .gospel-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-width: 0;
  }
}

.theme-gospel .gospel-sidebar .gospel-widget {
  margin-bottom: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(26, 39, 68, 0.14) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%) !important;
  box-shadow: 0 14px 34px rgba(26, 39, 68, 0.11), 0 2px 8px rgba(26, 39, 68, 0.05) !important;
}

.theme-gospel .gospel-sidebar .gospel-widget-featured {
  position: relative;
}

.theme-gospel .gospel-sidebar .gospel-widget-featured::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g-gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.15);
}

.theme-gospel .gospel-widget-menu-quick .gospel-widget-title {
  background: linear-gradient(130deg, #1b2b4c 0%, #2b3f67 55%, #3d84c6 100%) !important;
}

.theme-gospel .gospel-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 15px;
}

.theme-gospel .gospel-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--g-navy);
  border: 1px solid rgba(61, 132, 198, 0.28);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}

.theme-gospel .gospel-quick-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--g-sky), #2563a8);
  border-color: transparent;
  transform: translateY(-1px);
}

.theme-gospel .gospel-sidebar .gospel-widget::before {
  height: 4px !important;
}

.theme-gospel .gospel-sidebar .gospel-widget-title {
  position: relative;
  font-family: 'Source Serif 4', Georgia, serif !important;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.25 !important;
  padding: 13px 16px 12px !important;
  min-height: 50px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  color: var(--g-navy) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
  text-transform: none !important;
}

.theme-gospel .gospel-sidebar .gospel-widget-title::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #f0d875 0%, var(--g-gold) 45%, rgba(201, 162, 39, 0.2) 100%);
}

.theme-gospel .gospel-sidebar .gospel-widget > *:not(.gospel-widget-title) {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.theme-gospel .gospel-sidebar .gospel-widget > .gospel-widget-title + * {
  padding-top: 10px !important;
}

.theme-gospel .gospel-sidebar .gospel-widget > *:last-child {
  padding-bottom: 15px !important;
}

.theme-gospel .gospel-sidebar .gospel-clock {
  font-size: 2rem !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(61, 132, 198, 0.22);
  border-radius: 12px;
  padding: 12px 10px !important;
}

.theme-gospel .gospel-sidebar .gospel-mini-form input,
.theme-gospel .gospel-sidebar .gospel-mini-form textarea {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(26, 39, 68, 0.16) !important;
  background: #fff !important;
}

.theme-gospel .gospel-sidebar .gospel-mini-form input::placeholder,
.theme-gospel .gospel-sidebar .gospel-mini-form textarea::placeholder {
  color: #7a8aa3;
  opacity: 1;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.theme-gospel .gospel-sidebar .gospel-btn-full {
  margin-top: 4px !important;
  padding: 11px 14px !important;
  border-radius: 11px !important;
  font-size: 11px !important;
}

.theme-gospel .gospel-sidebar .gospel-widget-text {
  font-size: 13px;
  line-height: 1.6;
}

.theme-gospel .gospel-sidebar .gospel-quote-list li,
.theme-gospel .gospel-sidebar .gospel-mural-list li {
  padding: 10px 0 !important;
}

.theme-gospel .gospel-sidebar .gospel-quote-list li:first-child,
.theme-gospel .gospel-sidebar .gospel-mural-list li:first-child {
  border-top: 0 !important;
}

.theme-gospel .gospel-sidebar .gospel-top-music li {
  background: #fff;
  border: 1px solid rgba(26, 39, 68, 0.08);
  border-radius: 10px;
  padding: 8px 9px !important;
  margin-bottom: 7px;
}

.theme-gospel .gospel-sidebar .tm-art {
  font-size: 12px;
}

.theme-gospel .gospel-sidebar .tm-title {
  font-size: 11px;
}

.theme-gospel .gospel-sidebar .gospel-poll-opt {
  margin: 6px 0 !important;
  border-radius: 11px !important;
  padding: 9px 10px !important;
}

.theme-gospel .gospel-sidebar .gospel-tag {
  background: rgba(240, 216, 117, 0.14);
  border: 1px solid rgba(240, 216, 117, 0.35);
  border-radius: 999px;
  padding: 2px 7px;
  margin-top: -2px;
}

/* Faixa horizontal estilo portal (home) */
.theme-gospel .gospel-home-strip {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(26, 39, 68, 0.12);
  background: linear-gradient(180deg, #eef4fb 0%, #e8f0fa 100%);
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.08);
}

.theme-gospel .gospel-strip-head {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.theme-gospel .gospel-strip-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--g-navy);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.theme-gospel .gospel-strip-reset {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.theme-gospel .gospel-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.theme-gospel .gospel-widget-inline {
  margin-bottom: 0 !important;
  min-height: 100%;
  cursor: grab;
}

.theme-gospel .gospel-widget-inline .gospel-widget-title {
  font-family: 'Source Serif 4', Georgia, serif !important;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.25 !important;
  text-transform: none !important;
  min-height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 !important;
  padding: 13px 16px 12px !important;
  color: var(--g-navy) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}

.theme-gospel .gospel-widget-inline .gospel-widget-title::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #f0d875 0%, var(--g-gold) 45%, rgba(201, 162, 39, 0.2) 100%);
}

.theme-gospel .gospel-widget-inline:active {
  cursor: grabbing;
}

.theme-gospel .gospel-widget-inline.is-dragging {
  opacity: 0.45;
  transform: scale(0.98);
}

.theme-gospel .gospel-widget-inline.drop-target {
  outline: 2px dashed rgba(61, 132, 198, 0.5);
  outline-offset: 2px;
}

.theme-gospel .gospel-widget-inline .gospel-poll-opt {
  padding: 8px 10px;
  margin: 6px 0;
}

.theme-gospel .gospel-widget-inline .gospel-top-music li {
  margin-bottom: 6px;
}

.theme-gospel .gospel-weather-widget #weather-temp {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--g-navy);
  line-height: 1.2;
}

.theme-gospel .gospel-weather-widget #weather-desc {
  color: var(--g-muted);
  font-weight: 600;
}

@media (min-width: 961px) and (max-width: 1280px) {
  .theme-gospel .gospel-layout {
    grid-template-columns: minmax(0, 1fr) 335px !important;
  }
}

@media (max-width: 1280px) {
  .theme-gospel .gospel-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Menus secundarios mais evidentes */
.theme-gospel .gospel-footer .footer-col-title {
  position: relative;
  padding-left: 11px;
}

.theme-gospel .gospel-footer .footer-col-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 3px;
  background: var(--g-gold);
}

.theme-gospel .gospel-footer .footer-links {
  gap: 9px 10px !important;
}

.theme-gospel .gospel-footer .footer-links a {
  min-height: 36px !important;
  padding: 7px 11px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 960px) {
  .theme-gospel .gospel-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .theme-gospel .gospel-home-strip {
    padding: 0.9rem;
  }

  .theme-gospel .gospel-strip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .theme-gospel .gospel-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Widgets integrados ao fundo da página (sem “caixa”) + enquete + mobile ── */
.theme-gospel .gospel-widget,
.theme-gospel .gospel-sidebar .gospel-widget {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.theme-gospel .gospel-widget:hover,
.theme-gospel .gospel-sidebar .gospel-widget:hover {
  transform: none !important;
  box-shadow: none !important;
}

.theme-gospel .gospel-sidebar .gospel-widget::before {
  display: none !important;
}

.theme-gospel .gospel-sidebar .gospel-widget-featured::after {
  display: none !important;
}

.theme-gospel .gospel-widget-title,
.theme-gospel .gospel-sidebar .gospel-widget-title,
.theme-gospel .gospel-widget-inline .gospel-widget-title {
  background: transparent !important;
  color: var(--g-navy) !important;
  border-bottom: 2px solid rgba(201, 162, 39, 0.35) !important;
  box-shadow: none !important;
  padding-top: 8px !important;
  padding-bottom: 10px !important;
}

.theme-gospel .gospel-sidebar .gospel-widget-title::after,
.theme-gospel .gospel-widget-inline .gospel-widget-title::after {
  display: none !important;
}

.theme-gospel .gospel-home-strip {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.theme-gospel .gospel-sidebar .gospel-clock {
  background: transparent !important;
  border: 1px solid rgba(26, 39, 68, 0.12) !important;
}

.theme-gospel .gospel-sidebar .gospel-top-music li {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08) !important;
  border-radius: 0 !important;
  margin-bottom: 4px !important;
}

.theme-gospel .gospel-quick-links a {
  background: transparent !important;
}

.theme-gospel .gospel-poll-opt {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
}

.theme-gospel .gospel-poll-opt:hover {
  background: rgba(61, 132, 198, 0.06) !important;
}

.theme-gospel .gospel-poll-opt-main {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.theme-gospel .gospel-poll-pct {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--g-muted);
  white-space: nowrap;
}

.theme-gospel .gospel-poll-bar-wrap {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(26, 39, 68, 0.1);
  overflow: hidden;
  margin-top: 8px;
}

.theme-gospel .gospel-poll-bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--g-sky), var(--g-gold));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.theme-gospel .gospel-sidebar .gospel-poll-opt {
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .theme-gospel #site-header.gospel-header {
    position: relative;
    z-index: 60;
  }

  .theme-gospel .gospel-nav-cluster.is-open {
    position: relative;
    z-index: 61;
  }

  .theme-gospel .gospel-main {
    position: relative;
    z-index: 0;
  }

  .theme-gospel .gospel-sidebar {
    gap: 1.25rem;
  }

  .theme-gospel .gospel-widget-inline {
    min-height: 0;
  }

  .theme-gospel .gospel-page .gospel-wrap {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }
}

@media (max-width: 480px) {
  .theme-gospel {
    scroll-padding-top: calc(var(--gospel-player-offset) + 20px);
  }
}

/* ── Fotos, vídeos e notícias — mesmo tratamento “integrado ao fundo” ── */

.theme-gospel .gospel-panel:has(#gallery-grid-home),
.theme-gospel .gospel-panel:has(#videos-preview),
.theme-gospel .gospel-panel:has(#news-grid) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.theme-gospel .gospel-panel:has(#gallery-grid-home):hover,
.theme-gospel .gospel-panel:has(#videos-preview):hover,
.theme-gospel .gospel-panel:has(#news-grid):hover {
  box-shadow: none !important;
  transform: none !important;
}

.theme-gospel .gospel-panel:has(#gallery-grid-home) .gospel-panel-head,
.theme-gospel .gospel-panel:has(#videos-preview) .gospel-panel-head,
.theme-gospel .gospel-panel:has(#news-grid) .gospel-panel-head {
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
  padding-bottom: 10px;
}

.theme-gospel .gospel-panel:has(#gallery-grid-home) .gospel-see-all,
.theme-gospel .gospel-panel:has(#videos-preview) .gospel-see-all {
  background: transparent !important;
  box-shadow: none !important;
}

.theme-gospel .news-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08) !important;
}

.theme-gospel .news-card:hover {
  transform: none !important;
  box-shadow: none !important;
  background: rgba(61, 132, 198, 0.05) !important;
}

.theme-gospel .news-card-thumb {
  border-radius: var(--g-radius-sm) var(--g-radius-sm) 0 0 !important;
}

.theme-gospel .news-card--has-img {
  border-bottom: none !important;
}

.theme-gospel .news-card--has-img .news-card-thumb img {
  border-radius: var(--g-radius-sm) var(--g-radius-sm) 0 0;
}

.theme-gospel .news-card--has-img .news-card-body {
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
  padding-bottom: 1rem !important;
}

.theme-gospel .gallery-grid .gallery-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.theme-gospel .gallery-grid .gallery-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.theme-gospel .gallery-grid .gallery-photo {
  border: 1px solid rgba(26, 39, 68, 0.14) !important;
  box-shadow: none !important;
}

.theme-gospel .gospel-video-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08) !important;
}

.theme-gospel .gospel-video-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

.theme-gospel .gospel-video-thumb-link {
  padding: 6px 0 !important;
  margin: 0 !important;
  border-radius: var(--g-radius-sm);
}

.theme-gospel .gospel-video-thumb img {
  border: 1px solid rgba(26, 39, 68, 0.14) !important;
  box-shadow: none !important;
}

.theme-gospel .gospel-video-thumb-link:hover {
  background: rgba(61, 132, 198, 0.06) !important;
}

.theme-gospel .gospel-video-thumb-link:hover img {
  box-shadow: none !important;
}

.theme-gospel #gallery-grid-home .gallery-label {
  border-radius: 0 0 var(--g-radius-sm) var(--g-radius-sm);
}

/* ── Banners — mesmo critério dos widgets (sem caixa; fundo do site) ── */
.theme-gospel .gospel-banner-shell,
.theme-gospel .gospel-banner-shell--ads {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  overflow: visible;
}

.theme-gospel .gospel-banner-carousel,
.theme-gospel .gospel-banner-carousel--ads {
  background: transparent !important;
  border-radius: var(--g-radius-sm);
  overflow: hidden;
}

.theme-gospel .gospel-banner-media-link img {
  border-radius: var(--g-radius-sm);
}

.theme-gospel .gospel-banner-empty {
  color: var(--g-muted);
  background: transparent;
}

.theme-gospel .gospel-banner-dots {
  background: transparent !important;
  border-top: none !important;
  padding: 14px 8px 4px;
}

.theme-gospel .gospel-banner-dot {
  border-color: rgba(26, 39, 68, 0.28);
}

.theme-gospel .gospel-ad-banner-panel {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.theme-gospel .gospel-ad-banner-panel .gospel-panel-head {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
}

.theme-gospel .gospel-ad-item {
  border: 1px solid rgba(26, 39, 68, 0.14) !important;
  box-shadow: none !important;
}
