/* ===================================
   🔧 RESETEO Y CONFIGURACIÓN GLOBAL
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Cinzel Decorative', 'IM Fell English SC', serif;
  background-color: #000;
  color: #e0d8c3;
  scroll-behavior: smooth;
}

/* ===================================
   🎥 HERO MODERNO Y MÍSTICO
=================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Cinzel', serif; /* Fuente mística opcional */
  color: #ffeaa7;
}

.video-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4) saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  backdrop-filter: blur(4px);
  animation: fadeIn 2.5s ease-in-out;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 6px;
  text-shadow: 0 0 12px #ffd700aa, 0 0 30px #421b0d;
}

.hero p {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 10px #000000cc;
  max-width: 600px;
}

.hero button {
  background: linear-gradient(145deg, #ffd700, #ffcc00);
  color: #2d1208;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 0 15px #ffd70080, 0 0 30px #ffcc00a0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.hero button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ffd700aa, 0 0 40px #ffe066cc;
}

.hero button::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 16px;
  background: radial-gradient(circle, #ffd70033, transparent 70%);
  animation: pulse 2.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .hero button {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}


/* ===================================
   🌀 PORTAL - INVOCACIÓN
=================================== */
.oculto {
  display: none;
}

#portal {
  position: relative;
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000 100%);
  overflow: hidden;
  z-index: 1;
}

#neblina {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}

/* Sección del Ritual principal */
.ritual {
  position: relative;
  z-index: 2;
  padding: 6rem 2rem;
  text-align: center;
  color: #f8f0d9;
  background: linear-gradient(to bottom, #1a0d0d99, #000000cc);
  backdrop-filter: blur(2px);
}

.icono-ritual {
  max-width: 220px;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 25px #ffd70044;
  transition: transform 0.3s ease;
}

.icono-ritual:hover {
  transform: scale(1.05);
}

.ritual h2 {
  font-size: 2.3rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #000;
}

.ritual p {
  font-size: 1.2rem;
  color: #ddd;
  max-width: 700px;
  margin: 0.5rem auto;
  line-height: 1.7;
}

.ritual button {
  margin-top: 2rem;
  padding: 1rem 2.2rem;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700aa;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #ffd70033;
  font-family: 'Cinzel', serif;
}

.ritual button:hover {
  background: #ffd70022;
  color: #fff8dc;
  box-shadow: 0 0 30px #ffd70088;
}

/* Carruseles generales */
.carrusel-rituales {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  color: #e8e6e0;
  background: linear-gradient(to bottom, #000000dd, #0a0a0a);
}

.carrusel-rituales h2 {
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px #000;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #ccc;
}

.contenedor-slider {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.slider {
  display: flex;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* Tarjetas */
.tarjeta-ritual {
  background: #111;
  border-radius: 16px;
  padding: 2rem;
  min-width: 280px;
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 0 20px #00000055;
  transition: transform 0.3s ease;
}

.tarjeta-ritual:hover {
  transform: translateY(-8px);
}

.tarjeta-ritual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px #00000044;
}

.tarjeta-ritual h3 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tarjeta-ritual p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.tarjeta-ritual button {
  padding: 0.7rem 1.4rem;
  border: 2px solid #ffd700aa;
  background: transparent;
  color: #ffd700;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #ffd70033;
}

.tarjeta-ritual button:hover {
  background: #ffd70033;
  box-shadow: 0 0 20px #ffd70066;
}

/* Fechas especiales */
.etiqueta-fecha {
  display: inline-block;
  background: #222;
  color: #aaa;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.etiqueta-fecha.especial {
  background: #ffd70033;
  color: #ffd700;
  font-weight: bold;
}


/* ===================================
   🌿 SECCIÓN: Sobre el Maestro
=================================== */
.sobre-maestro {
  position: relative;
  padding: 6rem 2rem;
  background: radial-gradient(ellipse at center, #111 0%, #0a0a0a 100%);
  color: #eae6d9;
  text-align: center;
  overflow: hidden;
}

.sobre-maestro::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffd70022 0%, transparent 80%);
  animation: pulseGlow 6s infinite ease-in-out;
  z-index: 0;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

.sobre-maestro .contenido {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
  animation: fadeIn 1.4s ease-out forwards;
}

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

.imagen-container {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.foto-maestro {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffd700;
  box-shadow: 0 0 40px #ffd70066;
  transition: transform 0.3s ease;
}

.foto-maestro:hover {
  transform: scale(1.05);
}

.sobre-maestro .texto {
  max-width: 650px;
  padding: 0 1rem;
}

.sobre-maestro h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px #000;
}

.sobre-maestro p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #dcdcdc;
}

@media (min-width: 768px) {
  .sobre-maestro .contenido {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .sobre-maestro .texto {
    padding-left: 2rem;
  }

  .foto-maestro {
    width: 300px;
    height: 300px;
  }
}

/* ===================================
   🌕 SECCIÓN: Ceremonias
=================================== */
.ceremonias {
  background: linear-gradient(to bottom, #1a1a1a, #0e0e0e);
  color: #fceabb;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ceremonias .contenedor {
  max-width: 1100px;
  margin: auto;
}

.ceremonias h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-shadow: 0 0 10px #000;
  letter-spacing: 1px;
}

.ceremonias .intro {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.lista-ceremonias {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lista-ceremonias {
    grid-template-columns: 1fr 1fr;
  }
}

.item-ceremonia {
  background: #29231d;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px #0005;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-ceremonia:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #ffd70044;
}

.item-ceremonia h3 {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px #000;
}

.item-ceremonia p {
  font-size: 1.05rem;
  color: #e0d8c3;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.etiqueta-fecha {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid #ffd700;
  background-color: #00000033;
  color: #ffd700;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.boton-wsp {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px #25d36666;
}

.boton-wsp:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 0 15px #25d36688;
}

/* ===================================
   🜁 SECCIÓN: Testimonios
=================================== */
.testimonios {
  background: linear-gradient(to bottom, #0e0e0e, #161616);
  color: #fdf8e1;
  padding: 5rem 2rem;
  text-align: center;
}

.testimonios .contenedor {
  max-width: 1000px;
  margin: auto;
}

.testimonios h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #000;
}

.testimonios .intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lista-testimonios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-testimonio {
  background: #29231d;
  padding: 2.5rem 2rem 2rem;
  border-radius: 16px;
  box-shadow: 0 0 15px #0005;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.card-testimonio:hover {
  box-shadow: 0 0 25px #ffd70055;
  transform: translateY(-5px);
}

.card-testimonio .comilla {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-size: 3rem;
  color: #ffd70055;
  pointer-events: none;
}

.card-testimonio .texto {
  font-style: italic;
  line-height: 1.7;
  color: #f3f0d0;
  font-size: 1rem;
  max-height: 8.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.card-testimonio .autor {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  text-align: right;
}

@media (min-width: 768px) {
  .lista-testimonios {
    flex-direction: row;
    justify-content: space-between;
  }

  .card-testimonio {
    flex: 1;
    max-width: 31%;
  }
}

/* ===================================
   📬 SECCIÓN: Contacto
=================================== */
.contacto {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(to top, #0d0d0d, #1b1b1b);
  color: #f4f4f4;
  text-align: center;
  overflow: hidden;
}

#neblina {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contacto-contenido {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.contacto h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #ffd700;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contacto p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.03);
}

.icono-wa {
  width: 20px;
  height: 20px;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #444;
  background-color: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
  border: 1px solid #ffd700;
  outline: none;
  box-shadow: 0 0 5px #ffd70088;
}

.formulario-contacto button {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #e5c100;
}

/* Footer */
.footer {
  background-color: #000;
  color: #777;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
.calendario-cabalistico {
  position: fixed;
  top: 1rem;
  right: 1rem; /* ← Cambiado de left a right */
  background: radial-gradient(circle at top left, #1a1a1a 40%, #000 100%);
  border: 2px solid #b29400;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  z-index: 9999;
  color: #f9e7c1;
  font-family: 'Cinzel', serif;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
  max-width: 260px;
}

.bomba-de-tiempo h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #e4c441;
}

.bomba-de-tiempo p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #f0d58a;
}

#countdown {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff4d4d;
  text-shadow: 0 0 8px #ff0000;
}


/* CSS */
.carrusel-rituales {
  padding: 3rem 1rem;
  background: #0a0a0a;
  color: #f9f9f9;
  font-family: 'Cinzel', serif;
  text-align: center;
}

.contenedor-slider {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 1rem;
}

.slider {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding: 1rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Chrome, Safari y otros Webkit */
.slider::-webkit-scrollbar {
  display: none;
}

.tarjeta-ritual {
  background: #1b1b1b;
  border: 2px solid #b84cff;
  border-radius: 1rem;
  flex: 0 0 80%;
  max-width: 300px;
  scroll-snap-align: center;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(184, 76, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;

  overflow: hidden;
  word-wrap: break-word;
}

.tarjeta-ritual img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

/* Título */
.tarjeta-ritual h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #ffe2ff;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Descripción */
.tarjeta-ritual p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: #e0e0e0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* máximo 3 líneas */
  -webkit-box-orient: vertical;
}

/* Botón */
.tarjeta-ritual button {
  background: linear-gradient(to right, #ff66cc, #cc33ff);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tarjeta-ritual button:hover {
  transform: scale(1.05);
}
.tarjeta-ritual {
  background: #1b1b1b;
  border: 2px solid #b84cff;
  border-radius: 1rem;
  flex: 0 0 80%;
  max-width: 300px;
  scroll-snap-align: center;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(184, 76, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;

  overflow: hidden;
  word-wrap: break-word;
}

.tarjeta-ritual img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

/* Título */
.tarjeta-ritual h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #ffe2ff;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Descripción */
.tarjeta-ritual p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: #e0e0e0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* máximo 3 líneas */
  -webkit-box-orient: vertical;
}

/* Botón */
.tarjeta-ritual button {
  background: linear-gradient(to right, #ff66cc, #cc33ff);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tarjeta-ritual button:hover {
  transform: scale(1.05);
}

.ritual-slider {
  background: radial-gradient(circle at center, #0a001f 0%, #12002e 100%);
  color: white;
  padding: 2rem 1rem;
  overflow-x: auto;
  position: relative;
}

.titulo-slider {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Cairo', serif;
  color: #ffbdf2;
  text-shadow: 0 0 10px #ff00f2;
}

.slider-rituales {
  display: flex;
  gap: 1.5rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.tarjeta-ritual {
  flex: 0 0 80%;
  scroll-snap-align: center;
  background: linear-gradient(145deg, #2a0033, #1a0022);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 15px #ff00f255;
  text-align: center;
  min-width: 250px;
}

.tarjeta-ritual img {
  width: 100px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px #ff00f2);
}

.tarjeta-ritual h3 {
  font-size: 1.4rem;
  margin: 0.5rem 0;
  color: #ffc7ff;
}

.tarjeta-ritual p {
  font-size: 0.95rem;
  color: #e0d3f3;
}

.tarjeta-ritual button {
  margin-top: 1rem;
  background: #ff00f2;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s;
}

.tarjeta-ritual button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff00f2;
}
.slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider::-webkit-scrollbar {
  display: none;
}

.tarjeta-ritual {
  background: #1b1b1b;
  border: 2px solid #b84cff;
  border-radius: 1rem;
  flex: 0 0 80%;
  max-width: 300px;
  scroll-snap-align: center;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(184, 76, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  word-wrap: break-word;
  hyphens: auto;
}

.etiqueta-fecha {
  background-color: #b84cff;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;  
  margin-top: 0.5rem;
  color: white;
  font-size: 0.8rem;
}
.etiqueta-fecha.especial {
  background-color: #ff4cb8;
}
.boton-wsp {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #25d366;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.boton-wsp:hover {
  background-color: #1ebe5d;
}
.contacto {
  position: relative;
  padding: 4rem 1.5rem;
  background-color: #111;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#neblina {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.contacto-contenido {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(27, 27, 27, 0.8);
  border: 1px solid #b84cff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(184, 76, 255, 0.4);
}

.contacto-contenido h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffe2ff;
}

.contacto-contenido p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(to right, #25D366, #128C7E);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
  font-size: 1rem;
}

.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: #888;
}

.formulario-contacto button {
  background: linear-gradient(to right, #ff66cc, #cc33ff);
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario-contacto button:hover {
  background: linear-gradient(to right, #cc33ff, #ff66cc);
}
.tarot-mistico {
  margin-top: 60px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 24px;
  padding: 50px 30px;
  backdrop-filter: blur(10px);
  animation: fadeIn 2s ease-in-out;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.tarot-mistico h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.6rem;
  color: #fff7cc;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #fff0b3;
}

.tarot-mistico .intro {
  font-size: 1.2rem;
  color: #e6e6e6;
  margin-bottom: 30px;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cartas-tarot {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.carta {
  width: 130px;
  height: auto;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}

.carta:hover {
  transform: scale(1.15) rotateZ(-3deg);
  box-shadow: 0 0 25px rgba(255, 255, 200, 0.6);
}

.carta img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(255, 248, 220, 0.35);
  transition: all 0.3s ease-in-out;
}

.mensaje-tarot {
  display: none;
  font-size: 1.3rem;
  color: #ffeaa7;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 600px;
  animation: fadeIn 1s ease forwards;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(255, 250, 200, 0.2);
}

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