/* Tipografía base */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #1f2a36;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Fondo con gradiente institucional animado */
.background {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2f4156, #577c8d, #c8d9e6, #f5f8fa);
  background-size: 400% 400%;
  animation: gradientFlow 25s ease infinite;
  z-index: -2;
}

/* Capa de luz suave */
.overlay {
  position: absolute;
  width: 100%; height: 100%;
  background-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  z-index: -1;
}

/* Header */
header {
  text-align: center;
  padding: 20px 0;
}

.logo {
  width: 150px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

/* Contenedor principal */
.container {
  max-width: 850px;
  margin: 60px auto;
  padding: 40px 25px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

h1 {
  font-size: 2.3rem;
  color: #2f4156;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fecha {
  font-size: 1.3rem;
  color: #3a6ea5;
  font-weight: 600;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #2f4156;
}

.intro {
  font-size: 1.25rem;
  color: #24374b;
  font-weight: 600;
}

/* Caja de información */
.info {
  margin-top: 30px;
  background: linear-gradient(90deg, #c4e0ce, #e3f2ec);
  padding: 18px;
  border-radius: 10px;
  font-weight: 600;
  color: #2f4156;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Versículo destacado */
.versiculo-destacado {
  margin-top: 50px;
  position: relative;
  padding: 20px;
}

.decor-line {
  height: 3px;
  width: 60%;
  margin: 0 auto 15px auto;
  background: linear-gradient(90deg, #d4af37, #f5e6a2, #d4af37);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.versiculo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  background: linear-gradient(135deg, #fdfdfb, #f8f9fa);
  padding: 25px 30px;
  border-radius: 14px;
  color: #2f2f2f;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.versiculo:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.versiculo span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #6b5e28;
  font-weight: 600;
}

/* Botón */
.btn {
  display: inline-block;
  margin-top: 45px;
  padding: 16px 42px;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(90deg, #2f4156, #3a6ea5);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn:hover {
  background: linear-gradient(90deg, #3a6ea5, #2f4156);
  transform: translateY(-3px) scale(1.03);
}

/* Footer */
footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #2f4156;
  text-align: center;
  background-color: rgba(255,255,255,0.85);
  padding: 10px 0;
  font-weight: 500;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Animaciones */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  .intro { font-size: 1.1rem; }
  .versiculo { font-size: 1.2rem; padding: 20px; }
  .btn { font-size: 1rem; padding: 12px 26px; }
}
