/* ===========================
   ESTILOS GENERALES
=========================== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #060014;
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #f5e6b8;
  font-weight: 700;
  text-align: center;
}

p {
  color: #e5e5e5;
  font-size: 1.1rem;
  text-align: center;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: radial-gradient(circle at center, #15003a, #060014);
  padding: 120px 30px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  color: #dcd4ff;
}

/* ===========================
   BOTONES CTA
=========================== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(90deg, #6e8eff, #b0a6ff);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(150, 150, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s;
}

.btn-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(190, 200, 255, 0.8);
  background: linear-gradient(90deg, #a3b4ff, #d1c6ff);
}

/* Efecto de pulsación */
.pulse {
  animation: pulseEffect 2.3s infinite;
}

@keyframes pulseEffect {
  0% {
    box-shadow: 0 0 0 0 rgba(160, 150, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(160, 150, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(160, 150, 255, 0);
  }
}

/* ===========================
   SECCIÓN RITUALES
=========================== */
.rituales-section {
  padding: 100px 30px;
  background: #100028;
}

.rituales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.ritual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(180, 180, 255, 0.3);
}

/* ===========================
   BLOQUE EXPLICATIVO
=========================== */
.explicativo {
  background: linear-gradient(180deg, #0a0020, #18003a);
  padding: 100px 30px;
  text-align: center;
}

.explicativo p {
  max-width: 850px;
  margin: 20px auto;
  font-size: 1.1rem;
}

/* ===========================
   CTA FINAL
=========================== */
.cta-section {
  background: radial-gradient(circle at center, #1f0050, #0a001a);
  text-align: center;
  padding: 120px 30px;
}

/* ===========================
   FOOTER
=========================== */
footer {
  text-align: center;
  background-color: #060014;
  padding: 25px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn-cta {
    padding: 12px 26px;
    font-size: 0.9rem;
  }
}
.boton-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #e8d59c;
  color: #1b0e36;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  animation: palpitar 1.8s infinite ease-in-out;
}

/* Efecto al pasar el mouse */
.boton-flotante:hover {
  background-color: #f7e9a8;
  transform: scale(1.08);
}

/* Animación de palpitación */
@keyframes palpitar {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(232, 213, 156, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(232, 213, 156, 0.9);
  }
}
