:root {
  --primary-font: "Cinzel Decorative", serif; /*VERDAD Y FE*/
  --secondary-font: "Lora", serif; /*TITLES*/
  --third-font: "Signika", sans-serif; /*P TEXT*/
  --text-color: #f0f0f0;
  --background-color: #000000;
  --gold-dark: #a17d38;
  --gold-light: #f7e0a3;
}

/* --- Fondo degradado profundo --- */
body {
  background: linear-gradient(180deg, #0a0a10 0%, #0a0a0f 40%, #000000 100%);
  color: var(--text-color);
  font-family: var(--primary-font); /*VERDAD Y FE*/
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

/* --- FUENTES Y CONTENIDO SECTIONS --- */
body h2 {
  font-family: var(--primary-font); /*TITLES*/
}

div h3 {
  font-family: var(--primary-font); /*TITLES*/
}

#predicas div h3 {
  padding-top: 15px;
  font-family: var(--primary-font); /*TITLES*/
}
#predicas div p {
  padding: 25px;
}

#claves p {
  text-align: center;
}

footer {
  background-color: black;
  color: #888;
  padding: 50px 1rem 20px;
  font-family: var(--third-font);
  position: relative;
  z-index: 5;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* --- READ MORE SECTIONS --- */
.read-more-container {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.read-more-container .short-text {
  transition: opacity 0.3s ease;
}

.read-more-container .full-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.read-more-container .full-text.show {
  max-height: 1000px; /* suficientemente alto para cubrir contenido */
  opacity: 1;
}

.read-more-container .read-more-btn {
  background-color: #b3a246;
  color: #141414;
  border: none;
  padding: 0.6rem 1.2rem;
  margin-top: 0.8rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0.3rem;
  transition: background-color 0.3s ease;
}

.read-more-container .read-more-btn:hover {
  background-color: #fff197;
}

/* ----- CAJA 1 ----- */
.footer-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  width: max-content;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-contact p,
.footer-socials a {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.footer-socials a {
  margin: 0 0.5rem;
  color: #ccc;
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.yt-banner {
  width: 100px;
  height: auto;
  margin-top: 1rem;
}

.yt-banner:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6))
    drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
}

/* Firma del autor */
.footer-signature {
  text-align: center;
  margin-top: 0rem;
}

.footer-logo-link {
  filter: drop-shadow(0 0 0 transparent);
  transition: filter 0.4s ease;
}

.firma {
  width: auto;
  height: 50px;
}

.firma:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6))
    drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
}

/* Año © */
.footer-box:last-child p {
  font-size: 0.85rem;
  color: #999;
}

body p {
  font-family: var(--third-font); /*P TEXT*/
  font-size: large;
  text-align: justify;
}

/* --- Luz que sigue el cursor globalmente --- */
.global-light-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200vh;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 212, 125, 0.12),
    transparent 60%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: background-position 0.2s ease;
}

/* --- Luz reflejada en caja --- */
.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 231, 94, 0.08),
    transparent 60%
  );
  transform: translate(-25%, -25%);
  pointer-events: none;
  z-index: 0;
  transition: background-position 0.2s ease;
}

/* Reset general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  background-color: #000; /* o tu fondo principal */
}

#hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.5s ease;
  background: #0a0a0a; /* Color base de fondo */
  z-index: 1;
}

body.faded-hero #hero {
  opacity: 0.2;
}

.hero-background {
  background-color: rgba(10, 10, 10, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 1.5s ease;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  transition: opacity 1.5s ease;
  background: none !important;
}

.glow-title {
  font-family: var(--primary-font);
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-align: center;
  color: transparent;
  background: linear-gradient(145deg, #ffd700, #fff8b5, #caa932);
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
  user-select: none;
}

.glow-title span {
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease, filter 0.3s ease;
  cursor: default;
}

.glow-title span:hover {
  transform: scale(1.1);
  text-shadow: 0 0 4px rgba(255, 222, 120, 0.7), 0 0 8px rgba(255, 210, 90, 0.6),
    1px 1px 2px rgba(255, 200, 50, 0.5);
  filter: brightness(1.2) saturate(1.15);
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px #000;
}

#content {
  padding: 4rem 2rem;
  position: relative;
  z-index: 4; /* El contenido debe estar por encima de la luz */
}

.content-section {
  max-width: 900px;
  margin: 0 auto 5rem auto;
  padding: 2rem;
  background-color: rgba(10, 10, 10, 0);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(161, 125, 56, 0.2);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gold-light);
}

/* --- Responsive Design --- */
@media (max-width: 360px) {
  h2,
  .content-section h2,
  h3,
  .playlist h3 {
    font-size: 0.3rem;
  }

  #predicas h2,
  #predicacion h2,
  #extension h2,
  #pastor h2,
  #confesion h2,
  #claves h2 {
    font-size: 0.8rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 1rem;
    line-height: 1.3;
  }

  #predicas p,
  #predicacion p,
  #extension p,
  #pastor p,
  #confesion p,
  #claves p {
    font-size: 0.2rem;
  }

  .content-section blockquote {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .frase-secuencial {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.2rem;
    padding: 0 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h2,
  .content-section h2,
  h3,
  .playlist h3 {
    font-size: 1.5rem;
  }

  #predicas h2,
  #predicacion h2,
  #extension h2,
  #pastor h2,
  #confesion h2,
  #claves h2 {
    font-size: 1.6rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 1rem;
    line-height: 1.3;
  }

  #predicas p,
  #predicacion p,
  #extension p,
  #pastor p,
  #confesion p,
  #claves p {
    font-size: 1.1rem;
  }

  .content-section blockquote {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .frase-secuencial {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.2rem;
    padding: 0 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo-box,
  .footer-contact,
  .footer-socials {
    flex: 1;
  }

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

  .footer-socials {
    text-align: right;
  }

  .footer-signature {
    margin-top: 1rem;
  }

  /* Título principal */
  .glow-title,
  .hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: 3px;
  }

  #predicas p,
  #predicacion p,
  #extension p,
  #pastor p,
  #confesion p,
  #claves p {
    font-size: 1.1rem;
  }

  blockquote {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  h2,
  .content-section h2,
  h3,
  .playlist h3 {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 1rem;
  }

  .glow-title span {
    display: inline-block;
    line-height: 1.2;
  }

  /* Frase */
  .frase-secuencial {
    flex-direction: row;
    gap: 0.1rem;
    font-size: 0.2rem;
    padding: 0 1rem;
    text-align: center;
  }

  /* Versículo */
  .versiculo-header,
  blockquote {
    font-size: 1rem;
    padding: 0 1rem;
    line-height: 1.6;
  }

  /* Flecha */
  .scroll-btn {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }

  .pastor-info {
    flex-direction: column;
    padding: 1rem;
  }

  .pastor-photo {
    width: 140px;
  }

  .card {
    width: 90%;
    height: auto;
  }

  .card-front,
  .card-back {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

/* --- EFECTO DE BRILLO INTERACTIVO EN CAJAS --- */
.content-section {
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: "";
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.08),
    transparent 60%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: top 0.3s, left 0.3s;
  z-index: 0;
}

/* === NAV BASE === */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hamburger {
  display: none;
  font-size: 1rem;
  font-weight: bold;
  background: none;
  border: none;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  cursor: pointer;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}

#nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

#nav-links li {
  position: relative;
}

#nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

#nav-links a:hover {
  color: var(--gold-light);
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 999;
}

.submenu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: #ccc;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: #222;
  color: var(--gold-light);
}

/* === HOVER SOLO EN DESKTOP === */
@media (min-width: 769px) {
  .has-submenu:hover .submenu {
    display: block;
  }

  .hamburger {
    display: none;
  }
}

/* === RESPONSIVE MOVIL === */
p {
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  #nav-links.show {
    display: flex;
  }

  .submenu {
    display: none;
    position: static;
    background: none;
    padding: 0;
  }

  .has-submenu.open .submenu {
    display: flex;
    flex-direction: column;
  }
}

/* --- EFECTO HOVER “VERDAD Y FE” --- */
.hero-content h1 {
  color: #ffd700;
  background: linear-gradient(145deg, #ffe97a, #f5c847);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 2px #d3af37;
  transition: background-position 0.4s ease;
}
.hero-content h1:hover {
  background-position: 100% 0;
}

/*PLAYLISTS*/
.playlist {
  background-color: #111;
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}
.playlist h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.youtube-player {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold-dark); /* O el color que usas */
  background-color: #1a1a1a; /* Fondo detrás del video */
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* SECTION PASTOR*/
.pastor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pastor-info div {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pastor-info button {
  width: 20%;
  margin: 0%;
}

.pastor-photo {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* --- VERSÍCULO --- */
blockquote {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  color: var(--gold-light);
  text-shadow: 1px 1px 2px #000;
  padding-bottom: 15px;
}

.keyword-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  perspective: 1000px;
}

.card {
  width: 200px;
  height: 140px;
  position: relative;
  cursor: pointer;
  perspective: inherit;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  will-change: transform;
}

.card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 0 4px rgba(255, 215, 0, 0.1);
}

.card-front {
  background-color: #141414;
  color: var(--gold-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card-front:hover {
  background-color: #1f1f1f;
  transition: 0.4s ease;
}

.card-back {
  background-color: #1e1e1e;
  color: #eee;
  transform: rotateY(180deg);
}

.card-description {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
  color: #ccc;
}

/* --- ANTES FOOTER - BIBLIA --- */
.imagen-seccion-final {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.imagen-seccion-final img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

/* --- RAYOS DIVINOS --- */
.light-rays {
  position: absolute;
  top: -30vh; /* Empieza más arriba para caída */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 160vh;
  pointer-events: none;
  z-index: 1;
}

.ray {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 253, 204, 0.922),
    transparent 80%
  );
  filter: blur(16px);
  transform-origin: top center;
  transform: rotate(var(--angle)) translateX(-50%);
  animation: rayFall 7s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0;
  mix-blend-mode: screen;
}

@keyframes rayFall {
  0% {
    opacity: 0;
    transform: rotate(var(--angle)) scaleY(0.8) translateX(-50%);
  }
  50% {
    opacity: 0.6;
    transform: rotate(var(--angle)) scaleY(1.1) translateX(-50%);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--angle)) scaleY(1) translateX(-50%);
  }
}
/* --- LUZ AMBIENTAL DE FONDO --- */
.ambient-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 150vw;
  height: 150vh;
  background: radial-gradient(
    circle at center,
    rgba(255, 230, 180, 0.15),
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease;
}

body.scrolled .ambient-light {
  opacity: 0;
}

.imagen-seccion-final {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to top, white 1%, transparent 100%);
  z-index: 4;
  text-align: center;
}

.imagen-seccion-final img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -moz-crisp-edges;
  pointer-events: none;
}

#predicas .playlist p {
  text-align: center;
  font-size: larger;
}

#predicas .playlist h3 {
  text-align: center;
  font-size: xx-large;
}

/* --- TEXTO ANIMADO HEADER --- */
.palabras-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.palabras-fondo span {
  position: absolute;
  color: rgba(255, 255, 200, 0.12);
  font-size: 1.2rem;
  font-family: var(--primary-font, "Cinzel", serif);
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 255, 150, 0.08);
  animation: moverAleatorio 30s linear infinite,
    parpadear 6s ease-in-out infinite alternate;
  animation-fill-mode: both;
  opacity: 0.05; /* valor base que no parpadea bruscamente */
}

@keyframes moverAleatorio {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--tx, 100px), var(--ty, 100px));
  }
}

@keyframes parpadear {
  0% {
    opacity: 0.04;
    text-shadow: 0 0 4px rgba(255, 255, 180, 0.1);
  }
  50% {
    opacity: 0.3;
    text-shadow: 0 0 15px rgba(255, 255, 220, 0.3);
  }
  100% {
    opacity: 0.08;
    text-shadow: 0 0 5px rgba(255, 255, 180, 0.1);
  }
}

.frase-secuencial {
  display: flex;
  gap: 0.1rem;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.frase-secuencial .palabra {
  opacity: 0;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4),
    0 0 8px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
  animation: brillar-entrada 1.2s ease-out forwards;
}

.frase-secuencial .palabra:nth-child(1) {
  animation-delay: 0.5s;
}
.frase-secuencial .palabra:nth-child(2) {
  animation-delay: 1.3s;
}
.frase-secuencial .palabra:nth-child(3) {
  animation-delay: 2.1s;
}

@keyframes brillar-entrada {
  0% {
    opacity: 0;
    transform: scale(0.8);
    text-shadow: none;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
      0 0 20px rgba(255, 255, 255, 0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
  }
}

/* --- ESPACIO ENTRE TEXTOS HEADER --- */
#titulo-principal {
  opacity: 0;
  animation: aparecer-estelar 1.2s ease-out forwards;
  animation-delay: 0.2s;
  transform-origin: center;
}

.frase-secuencial {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-in 0.5s ease-out forwards;
  animation-delay: 1.5s;
}

.frase-secuencial .palabra {
  opacity: 0;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4),
    0 0 8px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
  animation: brillar-entrada 1.2s ease-out forwards;
}

.frase-secuencial .palabra:nth-child(1) {
  animation-delay: 1.6s;
}
.frase-secuencial .palabra:nth-child(2) {
  animation-delay: 2.4s;
}
.frase-secuencial .palabra:nth-child(3) {
  animation-delay: 3.2s;
}

.versiculo-header {
  opacity: 0;
  transform: translateY(30px);
  animation: versiculo-subir 1s ease-out forwards;
  animation-delay: 4.2s;
  font-size: 1rem;
  line-height: 1.5;
  color: #fffde6;
  text-align: center;
  margin-top: 2rem;
}

/* FLECHA */
.scroll-btn {
  display: inline-block;
  margin-top: 2rem;
  font-size: 2rem;
  color: gold;
  text-decoration: none;
  opacity: 0;
  animation: fade-in 1s ease-out forwards, bounce 2s ease-in-out 5.6s infinite;
  animation-delay: 5.5s, 5.6s; /* fade-in empieza antes, bounce después */
  transition: color 0.3s ease;
}

.scroll-btn:hover {
  transform: scale(1.15);
  color: #fff7c1;
  text-shadow: 0 0 10px rgba(255, 223, 100, 0.5),
    0 0 20px rgba(255, 223, 100, 0.3);
  transition: all 0.3s ease;
}

.scroll-btn {
  /* además de lo anterior */
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

@keyframes aparecer-estelar {
  0% {
    opacity: 0;
    transform: scale(0.6);
    text-shadow: none;
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
      0 0 30px rgba(255, 255, 255, 0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
  }
}

@keyframes brillar-entrada {
  0% {
    opacity: 0;
    transform: scale(0.8);
    text-shadow: none;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
      0 0 20px rgba(255, 255, 255, 0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
  }
}

@keyframes versiculo-subir {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
