@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #000;
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  text-align: center;
  padding:  1rem 2rem 0rem;
}

.hero-title {
  font-size: 1.2rem;
  font-weight: 65000;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  animation: glowFade 2s ease-in-out infinite alternate;
}

.titulo-principal {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffeb3b;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  animation: fadeInDown 1.2s ease-out forwards;
  letter-spacing: 1.5px;
}

.versiculo-destacado {
  font-size: 1rem;
  font-style: italic;
  color: #ffeb3b;
  text-align: center;
  margin-top: 1.5rem;
  padding: 2rem .90rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.288);
  animation: fadeInVerse 1.5s ease-out forwards;
}
.hero-button {
  background-color: #ff7043;
  color: rgb(255, 255, 255);
  font-size: 5000;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
  align-items: center;
}

.hero-button:hover {
  background-color: #d63707;
}

/* Animación suave */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-out {
  animation: fadeOutUp 0.5s ease-in forwards;
}

@keyframes fadeOutUp {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.portada {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.5rem;
    margin: 0rem 4rem 0rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 01rem 1rem;
  }

  .hero-overlay {
    padding: 0rem;
  }
}


.creditos-footer {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-size: 0.9rem;
  color: #555;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  z-index: 100;
}


@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 10px #ff7043; }
  50% { transform: scale(1.05); box-shadow: 0 0 20px #ff7043; }
  100% { transform: scale(1); box-shadow: 0 0 10px #ff7043; }
}

#fondoAnimado {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
@keyframes glowFade {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    opacity: 0.8;
  }
  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
}

@keyframes fadeInVerse {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
