@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-manrope: "Manrope";
  --font-cormorant: "Cormorant Garamond";
  --ink: #071a2d;
  --ink-soft: #0d2944;
  --gold: #d8a83e;
  --gold-light: #f3c65d;
  --ivory: #f7f1e7;
  --paper: #fffaf2;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-manrope), Arial, Helvetica, sans-serif;
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 118px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 10px clamp(24px, 4.5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 20%, rgba(216, 168, 62, 0.13), transparent 28%),
    var(--ivory);
  border-bottom: 2px solid var(--gold);
}

.brand {
  width: 150px;
  display: block;
}

.brand img {
  width: 100%;
  height: 96px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 52px);
}

nav a {
  position: relative;
  padding: 18px 0;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
}

nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 180ms ease, right 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after,
nav a.active::after {
  right: 0;
  left: 0;
}

.listen-mini {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--ink);
  border: 1px solid rgba(7, 26, 45, 0.16);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.menu-button span {
  width: 17px;
  height: 2px;
  display: block;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
  overflow: hidden;
  padding: 58px clamp(30px, 4.5vw, 72px) 70px;
  background:
    linear-gradient(90deg, rgba(3, 13, 24, 0.94) 0%, rgba(4, 18, 33, 0.82) 44%, rgba(2, 12, 24, 0.76) 100%),
    url("/assets/fondo-radio.jpg") center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -180px;
  left: -8%;
  height: 300px;
  border: 2px solid rgba(216, 168, 62, 0.65);
  border-radius: 50%;
  transform: rotate(3deg);
}

.hero::after {
  bottom: -205px;
  border-color: rgba(60, 113, 155, 0.3);
  transform: rotate(-2deg);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 211, 103, 0.18), transparent 67%);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.eyebrow strong {
  color: var(--gold-light);
  letter-spacing: 0.11em;
}

.live-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(243, 198, 93, 0.55);
  animation: pulse 1.8s infinite;
}

h1,
h2,
h3 {
  font-family: var(--font-cormorant), Georgia, serif;
}

h1 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(4.2rem, 6.4vw, 7.3rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.gold-rule {
  width: min(100%, 560px);
  height: 1px;
  margin: 34px 0 26px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light) 60%, transparent);
  box-shadow: 0 0 10px var(--gold);
}

.lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 30px;
  border: 1px solid var(--gold);
  border-radius: 9px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--ink);
  background: linear-gradient(135deg, #edb939, var(--gold-light));
  box-shadow: 0 14px 30px rgba(216, 168, 62, 0.22);
}

.button-gold:hover {
  box-shadow: 0 18px 40px rgba(216, 168, 62, 0.34);
}

.button-outline {
  color: var(--ivory);
  background: rgba(7, 26, 45, 0.45);
}

.button-outline:hover {
  background: rgba(216, 168, 62, 0.1);
}

.action-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transform-origin: center;
}

.listen-icon {
  animation: iconSignal 1.55s ease-in-out infinite;
}

.family-icon {
  color: var(--gold-light);
  animation: iconScreen 2.2s ease-in-out infinite;
}

.radio-card {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 42px 52px 34px;
  border: 1px solid rgba(216, 168, 62, 0.8);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(18, 49, 78, 0.88), rgba(5, 21, 38, 0.94)),
    var(--ink);
  box-shadow:
    0 0 0 8px rgba(216, 168, 62, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.33),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.radio-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(216, 168, 62, 0.34);
  border-radius: 28px;
}

.radio-card > img {
  position: relative;
  z-index: 2;
  width: min(280px, 64%);
  height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
}

.radio-card h2 {
  position: relative;
  z-index: 2;
  margin: 2px 0 5px;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 600;
}

.on-air {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 22px;
  padding: 7px 19px;
  color: var(--gold-light);
  border: 1px solid rgba(216, 168, 62, 0.65);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.player-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.play-button {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  margin: 24px 0 20px;
  color: var(--white);
  border: 6px solid rgba(7, 26, 45, 0.82);
  border-radius: 50%;
  outline: 1px solid var(--gold);
  cursor: pointer;
  background: linear-gradient(145deg, #f6c759, #c98917);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.33), 0 0 0 7px rgba(216, 168, 62, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38), 0 0 28px rgba(216, 168, 62, 0.24);
}

.play-button span {
  display: inline-block;
  margin-left: 5px;
  font-size: 2.2rem;
}

.play-button.is-playing span {
  margin-left: 0;
}

.player-status,
.volume-row {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.8rem;
}

.player-status strong {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.volume-row {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 168, 62, 0.22);
}

.volume-row input {
  width: 100%;
  accent-color: var(--gold);
}

.radio-waves {
  position: absolute;
  top: 106px;
  right: 22px;
  left: 22px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.45;
}

.radio-waves i {
  width: 3px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(var(--gold-light), rgba(216, 168, 62, 0.12));
  animation: wave 1.35s ease-in-out infinite alternate;
}

.brand img,
.radio-card > img,
.app-visual img,
.footer-brand > img,
.sticky-player img {
  animation: logoFloat 4s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.radio-card > img {
  animation-delay: -1s;
}

.app-visual img {
  animation-delay: -2s;
}

.footer-brand > img {
  animation-delay: -3s;
}

.sticky-player img {
  animation-delay: -1.5s;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 5%, rgba(216, 168, 62, 0.12), transparent 24%),
    var(--ivory);
}

.section-kicker {
  margin: 0 0 16px;
  color: #9a701b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.section-kicker.gold {
  color: var(--gold-light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.meeting-copy h2,
.sermon-copy h2,
.apps h2,
.promise h2 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 5.1rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading.dark > p:last-child {
  color: rgba(7, 26, 45, 0.68);
}

.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.portrait-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-wrap > img {
  position: relative;
  z-index: 2;
  width: min(390px, 92%);
  filter: drop-shadow(0 25px 30px rgba(7, 26, 45, 0.17));
}

.portrait-ring {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(154, 112, 27, 0.55);
  border-radius: 50%;
}

.portrait-ring::before,
.portrait-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 50%;
}

.portrait-ring::before {
  inset: -26px;
}

.portrait-ring::after {
  inset: 26px;
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 32px;
  min-width: 210px;
  padding: 17px 22px;
  color: var(--ivory);
  border-left: 3px solid var(--gold);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(7, 26, 45, 0.2);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption span {
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 650px;
}

.section-copy .section-lead {
  margin: 30px 0 18px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
}

.section-copy > p:not(.section-kicker):not(.section-lead),
.meeting-copy > p:not(.section-kicker),
.sermon-copy > p:not(.section-kicker),
.apps p:not(.section-kicker) {
  color: rgba(7, 26, 45, 0.67);
  line-height: 1.85;
}

.signature {
  margin-top: 28px;
}

.signature span,
.signature strong {
  display: block;
}

.signature span {
  color: rgba(7, 26, 45, 0.56);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.signature strong {
  margin-top: 3px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.65rem;
}

.family-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 105px;
  background:
    linear-gradient(110deg, rgba(2, 10, 19, 0.95), rgba(4, 19, 35, 0.81)),
    url("/assets/fondo-tv.png") center 32% / cover no-repeat;
  background-attachment: fixed;
}

.family-section::before {
  content: "";
  position: absolute;
  top: 190px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 168, 62, 0.28), transparent);
}

.tv-frame {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 62, 0.6);
  border-radius: 26px;
  background: #020913;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.tv-topline {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: rgba(255, 253, 248, 0.8);
  border-bottom: 1px solid rgba(216, 168, 62, 0.22);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.red-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #e14b42;
  box-shadow: 0 0 0 5px rgba(225, 75, 66, 0.13);
}

.tv-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  display: block;
  border: 0;
}

.platforms {
  margin-top: 42px;
  text-align: center;
}

.platforms > p {
  color: rgba(255, 253, 248, 0.4);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.platform-row a {
  min-width: 205px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(3, 13, 24, 0.72);
  transition: border-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

.platform-row a:hover {
  border-color: rgba(216, 168, 62, 0.55);
  transform: translateY(-3px);
}

.platform-row span,
.platform-row small,
.platform-row strong {
  display: block;
  text-align: left;
}

.platform-row small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-row strong {
  margin-top: 3px;
  font-size: 1rem;
}

.device-icon {
  position: relative;
  width: 48px;
  height: 38px;
  flex: 0 0 48px;
}

.android-device > .fa-tv {
  position: absolute;
  inset: 2px 3px 5px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 2.25rem;
}

.android-device > .device-brand {
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #3ddc84;
  border: 2px solid #174d34;
  border-radius: 50%;
  background: #ffffff;
  font-size: 0.74rem;
}

.roku-device .streaming-box {
  position: absolute;
  left: 0;
  top: 15px;
  width: 31px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 5px;
  background: #24122f;
  box-shadow: inset 0 0 0 3px #6f1ab1;
}

.roku-device .streaming-box::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.roku-device .streaming-remote {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 15px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: #35105b;
  transform: rotate(7deg);
}

.roku-device .streaming-remote::before,
.roku-device .streaming-remote::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
}

.roku-device .streaming-remote::before {
  top: 5px;
  width: 5px;
  height: 5px;
}

.roku-device .streaming-remote::after {
  top: 15px;
  width: 7px;
  height: 7px;
  background: #b266ff;
}

.fire-device .streaming-stick {
  position: absolute;
  left: 0;
  top: 13px;
  width: 31px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  background: #111820;
}

.fire-device .streaming-stick::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 3px;
  width: 7px;
  height: 5px;
  border-radius: 2px 0 0 2px;
  background: #ffffff;
}

.fire-device .streaming-stick::after {
  content: "fire";
  position: absolute;
  left: 5px;
  top: 1px;
  color: #ff9900;
  font-size: 0.5rem;
  font-weight: 800;
}

.fire-device .fire-remote {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 14px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: #111820;
  transform: rotate(8deg);
}

.fire-device .fire-remote::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 6px;
  height: 6px;
  border: 1px solid #ff9900;
  border-radius: 50%;
  transform: translateX(-50%);
}

.fire-device .fire-remote::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: #ffffff;
  transform: translateX(-50%);
}

.platform-row a:nth-child(1) {
  border-color: rgba(61, 220, 132, 0.78);
  background: linear-gradient(135deg, #174d34, #0d3523);
  box-shadow: 0 14px 32px rgba(20, 128, 74, 0.2);
}

.platform-row a:nth-child(2) {
  border-color: rgba(178, 102, 255, 0.78);
  background: linear-gradient(135deg, #5b188f, #35105b);
  box-shadow: 0 14px 32px rgba(111, 26, 177, 0.2);
}

.platform-row a:nth-child(3) {
  border-color: rgba(255, 153, 0, 0.8);
  background: linear-gradient(135deg, #5a310b, #2d1a08);
  box-shadow: 0 14px 32px rgba(255, 153, 0, 0.16);
}

.purpose {
  padding: 120px 0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.purpose-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 56px;
  color: var(--ivory);
  border: 1px solid rgba(216, 168, 62, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(3, 13, 24, 0.88), rgba(7, 26, 45, 0.68)),
    url("/assets/fondo-mision.jpg") center / cover no-repeat;
  box-shadow: 0 24px 55px rgba(7, 26, 45, 0.16);
}

.purpose-card.featured {
  color: var(--ivory);
  border-color: var(--ink);
  background:
    linear-gradient(145deg, rgba(3, 13, 24, 0.86), rgba(7, 26, 45, 0.66)),
    url("/assets/fondo-vision.jpg") center / cover no-repeat;
}

.purpose-card .card-number {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
}

.purpose-card .section-kicker {
  color: var(--gold-light);
}

.purpose-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  color: var(--gold);
  border: 1px solid rgba(216, 168, 62, 0.55);
  border-radius: 50%;
  font-size: 1.9rem;
}

.purpose-card h3 {
  margin: 8px 0 24px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
}

.purpose-card > p:last-child {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.85;
}

.purpose-card.featured > p:last-child {
  color: rgba(255, 253, 248, 0.69);
}

.sermons {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 24, 0.94), rgba(7, 26, 45, 0.75)),
    url("/assets/fondo-youtube.jpg") center / cover no-repeat;
}

.sermons-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 72px;
}

.sermon-copy h2 {
  color: var(--ivory);
}

.sermon-copy > p:not(.section-kicker) {
  margin: 24px 0 32px;
  color: rgba(255, 253, 248, 0.68);
}

.video-frame {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(216, 168, 62, 0.55);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  border-radius: 15px;
}

.meetings {
  padding: 120px 0;
}

.meetings-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.meeting-copy > p:not(.section-kicker) {
  margin: 24px 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8d6618;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.schedule-card {
  overflow: hidden;
  padding: 34px 26px;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(7, 26, 45, 0.1);
}

.schedule-card img {
  width: 100%;
  display: block;
}

.apps {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(2, 10, 19, 0.93), rgba(4, 17, 30, 0.68)),
    url("/assets/fondo-apps.jpg") center / cover no-repeat;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.apps h2 {
  color: var(--ivory);
}

.apps p:not(.section-kicker) {
  max-width: 600px;
  color: rgba(255, 253, 248, 0.66);
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.app-badges a {
  display: block;
  animation: appBadgeFloat 3.4s ease-in-out infinite;
  filter: drop-shadow(0 15px 22px rgba(0, 0, 0, 0.28));
  transition: filter 180ms ease, transform 180ms ease;
}

.app-badges a:nth-child(2) {
  animation-delay: -1.7s;
}

.app-badges .alexa-skill-badge {
  width: 181px;
  height: 59px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #ffffff;
  border: 1px solid #5a5a5a;
  border-radius: 7px;
  background: #070F1A;
  animation: appBadgeFloat 3.4s ease-in-out infinite;
  animation-delay: -0.85s;
  filter: drop-shadow(0 15px 22px rgba(0, 0, 0, 0.28));
}

.app-badges .alexa-logo {
  width: 65px;
  height: 41px;
  flex: 0 0 65px;
  object-fit: contain;
}

.alexa-skill-badge span,
.alexa-skill-badge small,
.alexa-skill-badge strong {
  display: block;
  text-align: left;
}

.alexa-skill-badge small {
  color: #d4d4d4;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.alexa-skill-badge strong {
  margin-top: 2px;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.app-badges a:hover {
  animation-play-state: paused;
  filter: drop-shadow(0 18px 28px rgba(216, 168, 62, 0.28));
  transform: translateY(-5px) scale(1.04);
}

.app-badges img {
  width: 181px;
  height: 59px;
  display: block;
}

@keyframes appBadgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(-0.8deg);
  }
}

.app-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.app-visual img {
  position: relative;
  z-index: 2;
  width: 270px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4));
}

.app-visual > span {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 16%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.signal-orbit {
  position: absolute;
  border: 1px solid rgba(216, 168, 62, 0.26);
  border-radius: 50%;
}

.orbit-one {
  width: 360px;
  height: 250px;
}

.orbit-two {
  width: 490px;
  height: 330px;
}

.promise {
  padding: 62px 0;
  color: var(--ink);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.23), transparent),
    var(--gold-light);
}

.promise-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.promise h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.button-dark {
  color: var(--ivory);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 18px 35px rgba(7, 26, 45, 0.22);
}

footer {
  padding: 84px 0 30px;
  background: #04111e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 80px;
}

.footer-brand > img {
  width: 185px;
  height: 120px;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 340px;
  color: rgba(255, 253, 248, 0.55);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 168, 62, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  transition: background 180ms ease, color 180ms ease;
}

.social-links svg,
.social-links i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.social-links a:hover {
  color: var(--ink);
  background: var(--gold-light);
}

.footer-title {
  margin: 23px 0 25px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links,
address {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-links a:hover,
address a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 66px;
  padding-top: 24px;
  color: rgba(255, 253, 248, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.77rem;
}

.footer-bottom button {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ivory);
  border: 0;
  cursor: pointer;
  background: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.sticky-player {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: 290px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(216, 168, 62, 0.68);
  border-radius: 14px;
  background: rgba(7, 26, 45, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(25px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(16px);
}

.sticky-player.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-player img {
  width: 60px;
  height: 48px;
  object-fit: contain;
}

.sticky-player > div {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.sticky-player > div span {
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sticky-player > div strong {
  margin-top: 3px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.2rem;
}

.sticky-player button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--gold-light);
  font-weight: 900;
}

@keyframes wave {
  from { transform: scaleY(0.6); }
  to { transform: scaleY(3.6); }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.025);
  }
}

@keyframes iconSignal {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(7, 26, 45, 0));
  }
  50% {
    transform: scale(1.14);
    filter: drop-shadow(0 0 7px rgba(7, 26, 45, 0.42));
  }
}

@keyframes iconScreen {
  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 0 rgba(243, 198, 93, 0));
  }
  50% {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 7px rgba(243, 198, 93, 0.7));
  }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(243, 198, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 198, 93, 0); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  nav {
    display: none;
  }

  .listen-mini {
    display: flex;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 16px 24px;
    color: var(--ivory);
    background: rgba(4, 17, 30, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 13px;
    text-align: center;
    border-radius: 8px;
  }

  .mobile-menu a:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .radio-card {
    min-height: 570px;
    padding-inline: 34px;
  }

  .about-grid,
  .meetings-grid {
    gap: 45px;
  }

  .purpose-card {
    padding: 44px;
  }

  .sermons-grid {
    gap: 44px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 92px;
    grid-template-columns: 1fr auto;
    padding-block: 4px;
  }

  .brand img {
    width: 118px;
    height: 82px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .gold-rule {
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(4rem, 17vw, 6.4rem);
  }

  .radio-card {
    min-height: 590px;
  }

  .about,
  .family-section,
  .purpose,
  .meetings {
    padding: 90px 0;
  }

  .about-grid,
  .sermons-grid,
  .meetings-grid,
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .meetings-grid {
    gap: 55px;
  }

  .section-copy,
  .meeting-copy,
  .sermon-copy,
  .apps-grid > div:first-child {
    max-width: 660px;
    text-align: center;
    margin-inline: auto;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    min-height: auto;
  }

  .sermons {
    padding: 88px 0;
  }

  .app-badges {
    justify-content: center;
  }

  .promise-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promise-inner {
    text-align: center;
  }

  .promise .button {
    justify-self: center;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand > p {
    margin-inline: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-title,
  .footer-links,
  address {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .mobile-menu {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .radio-card {
    min-height: 540px;
    padding: 30px 22px;
    border-radius: 28px;
  }

  .play-button {
    width: 92px;
    height: 92px;
  }

  .section-heading h2,
  .section-copy h2,
  .meeting-copy h2,
  .sermon-copy h2,
  .apps h2 {
    font-size: 3rem;
  }

  .portrait-wrap {
    min-height: 400px;
  }

  .portrait-ring {
    width: 300px;
    height: 300px;
  }

  .portrait-caption {
    right: 5px;
  }

  .purpose-card {
    padding: 38px 28px;
  }

  .purpose-card .card-number {
    font-size: 5rem;
  }

  .tv-frame iframe {
    aspect-ratio: 16 / 12;
  }

  .platform-row {
    gap: 10px;
  }

  .platform-row a {
    width: 100%;
    justify-content: center;
  }

  .schedule-card {
    padding: 22px 10px;
  }

  .app-visual {
    transform: scale(0.84);
  }

  .promise .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-player {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

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