/* styles.css - Mobile first */
/* BEM naming is used throughout */

:root{
  --bg:#0b0b0d;
  --card:#0f1724;
  --muted:#9aa3ad;
  --accent:#c9a95a; /* soft gold */
  --accent-2:#2b8a5f; /* amazon green */
  --glass: rgba(255,255,255,0.03);
  --radius:12px;
  --max-width:860px;
  --ff-heading: 'Playfair Display', serif;
  --ff-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
/* ===== ESTILO GENERAL ===== */
*{box-sizing:border-box}
html,body{height:100%}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #f5f5f5;
  background: transparent;
  min-height: 100vh;
}


/* ===== HEADER ===== */
.header {
  background: transparent; /* 🔥 cambia de blanco a transparente */
  text-align: center;
  padding: 1.5rem;
}

.header__logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2d1a6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header__subtitle {
  font-size: 0.9rem;
  color: #d6d6d6;
  margin-top: 0.3rem;
}

.header__subtitle {
  font-size: 0.9rem;
  color: #d6d6d6;
  margin-top: 0.3rem;
}


/* Misty animated background */
.bg-mist{
  position:fixed;
  inset:0;
  z-index:0;
  background:
    radial-gradient(1200px 600px at 10% 20%, rgba(43,138,95,0.06), transparent 8%),
    radial-gradient(900px 400px at 90% 80%, rgba(201,169,90,0.04), transparent 10%),
    linear-gradient(180deg, rgba(5,8,10,0.92) 0%, rgba(5,8,12,0.96) 100%);
  pointer-events:none;
  overflow:hidden;
}

/* subtle drifting overlay */
.bg-mist::after{
  content:"";
  position:absolute;
  inset:-20%;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.02), transparent 10%),
             radial-gradient(circle at 70% 70%, rgba(255,255,255,0.01), transparent 8%);
  animation: drift 18s linear infinite;
  filter: blur(26px) saturate(120%);
}
@keyframes drift{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-6%, -4%, 0)}
}

/* Layout constraints */
.header__container,
.services__inner,
.testimonials__inner,
.contact__inner{
  padding:1rem;
  max-width:var(--max-width);
  margin:0 auto;
  position:relative;
  z-index:2;
}

.brand{display:flex;gap:0.8rem;align-items:center}
.brand__logo svg{width:48px;height:48px;color:var(--accent);}
.brand__title{font-family:var(--ff-heading);font-size:1.05rem;margin:0;color:var(--accent);letter-spacing:0.6px}
.brand__subtitle{margin:0;font-size:0.72rem;color:var(--muted)}

/* Hero */
.hero{display:flex;gap:0.8rem;padding:1.2rem 0;align-items:center;justify-content:space-between}
.hero__content{flex:1;z-index:2}
.hero__title {
  font-family: 'Playfair Display', serif;  /* tipografía elegante */
  font-size: 1.1rem;                       /* un poco más pequeña */
  margin: 0 0 0.6rem;
  color: #c93f3f;                          /* violeta místico */
  font-weight: 600;
  text-align: center;                      /* centrado como en el ejemplo */
  text-shadow: 0 0 10px rgba(247, 94, 94, 0.4); /* brillo suave violeta */
}

.hero__lead {
  color: #f5c8c8;        /* violeta más suave */
  font-size: 0.9rem;     /* un poco más pequeño */
  text-align: center;
  font-weight: 400;
  margin-top: 0.5rem;
}

.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.6rem 0.9rem;border-radius:10px;text-decoration:none;border:1px solid transparent;font-weight:600;font-size:0.95rem}
.btn--primary{background:linear-gradient(90deg,var(--accent), var(--accent-2));color:#081018;box-shadow:0 6px 18px rgba(43,138,95,0.12)}
.btn--secondary{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--accent);padding:0.5rem 0.8rem;border-radius:10px}
.btn--ghost{background:transparent;border:1px dashed rgba(255,255,255,0.06);color:var(--muted)}

/* cards */
.cards{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr;gap:0.9rem}
.card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:0.9rem;border-radius:var(--radius);border:1px solid rgba(255,255,255,0.03)}
.card__title{margin:0 0 0.4rem;font-family:var(--ff-heading);font-size:1rem;color:var(--accent)}
.card__desc{margin:0;color:var(--muted);font-size:0.92rem}

/* testimonials */
.testimonial{margin:0.6rem 0;padding:0.7rem;border-radius:10px;background:var(--glass);border:1px solid rgba(255,255,255,0.02)}
.testimonial__text{margin:0 0 0.4rem;color:#eaf3ff;font-size:0.95rem}
.testimonial__author{margin:0;font-size:0.82rem;color:var(--muted)}

/* contact form */
.form{display:block;margin-top:0.6rem}
.form__row{margin-bottom:0.6rem}
.form__label{display:block;font-size:0.78rem;margin-bottom:0.25rem;color:var(--muted)}
.form__input,.form__textarea{width:100%;padding:0.7rem;border-radius:10px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:#fff;font-size:0.95rem;outline:none}
.form__textarea{min-height:90px}
.form__row--actions{display:flex;gap:0.6rem;flex-direction:column}
.form__message{margin-top:0.5rem;color:var(--accent);font-weight:600}

/* footer */
.footer{padding:1rem 0;text-align:center;color:var(--muted);font-size:0.82rem;border-top:1px solid rgba(255,255,255,0.02);z-index:2;position:relative}

/* Floating WhatsApp button */
.whatsapp{
  --size:56px;
  position:fixed;
  right:14px;
  bottom:16px;
  width:var(--size);
  height:var(--size);
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  z-index:9999;
  text-decoration:none;
  color:#081018;
  background:linear-gradient(180deg,var(--accent), var(--accent-2));
  box-shadow:0 10px 30px rgba(43,138,95,0.18);
  border:3px solid rgba(255,255,255,0.04);
}

/* tablet and up */
@media (min-width:768px){
  .hero{padding:2rem 0}
  .hero__title{font-size:1.6rem}
  .cards{grid-template-columns:repeat(2,1fr)}
  .form__row--actions{flex-direction:row}
}

/* subtle entrance animations */
[data-animate="true"]{opacity:0;transform:translateY(8px);transition:opacity .6s ease, transform .6s ease}
[data-animate="true"].is-visible{opacity:1;transform:none}
/* === UNIFICAR FONDO OSCURO === */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: none !important; /* Evita blanco por defecto */
  overflow-x: hidden;
}

/* Asegura que el contenedor principal se superponga al fondo */
.page {
  position: relative;
  z-index: 1;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
}

/* Forzar a que el header y main estén sobre la niebla */
.header, .main, .footer {
  position: relative;
  z-index: 2;
  background: transparent !important;
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 9999;
  background: none; /* sin fondo */
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.whatsapp:hover {
  transform: scale(1.08);
}

.whatsapp__icon {
  width: 60px;   /* puedes ajustar el tamaño */
  height: 60px;
  display: block;
}
/* Contenedor del logo (ajusta tamaño según tu diseño) */
.brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Si ya tienes ancho/alto definidos, manténlos; si no: */
  width: 56px;
  height: 56px;
  /* Mantén separación con texto si hace falta */
  margin-right: 12px;
}

/* Contenedor circular con borde dorado */
.brand__logo--img {
  width: 48px;            /* tamaño del círculo visible */
  height: 48px;
  border-radius: 50%;
  overflow: hidden;       /* recorta la imagen para que quede circular */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  /* borde exterior dorado (simula el anillo amarillo) */
  border: 3px solid #d2a84a; /* color dorado — cámbialo si quieres */
  background-color: #111;    /* fondo oscuro si la imagen tiene transparencia */
  /* opcional: sombra suave */
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* La imagen debe cubrir y centrarse */
.brand__logo--img img {
  width: 110%;
  height: 110%;
  object-fit: cover;   /* asegura que la imagen llene el círculo sin deformarse */
  display: block;
  /* si quieres ajustar la posición focal de la imagen, usa object-position */
  object-position: center center;
}
/* 🔥 Animación de “latido” (palpitar) para el botón de WhatsApp */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(43, 138, 95, 0.6);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(43, 138, 95, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(43, 138, 95, 0);
  }
}

/* Aplica el efecto de latido al botón de WhatsApp */
.whatsapp {
  animation: pulse 2s infinite;
}


/* ======================================================================
   Fondo global con imagen debajo de la niebla, visible detrás del header
   ====================================================================== */

/* 1) Imagen de fondo colocada como pseudo-elemento del body.
      - Se sitúa **debajo** de la niebla (.bg-mist z-index:0)
      - Usamos z-index:-1 para dejar la niebla y contenido por encima
*/
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/arte-ancestral.webp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  filter: saturate(100%) contrast(95%);
}


/* 2) Hacemos transparentes header y hero para que la imagen global se vea */
.header,
.header__top,
.header__container,
.hero {
  background: transparent !important;
}

/* 3) Añadimos un filtro oscuro específico sobre el header (para legibilidad) */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba( 0);
 /* ajusta opacidad si quieres más/menos oscuro */
  pointer-events: none;
  z-index: 0; /* debajo del contenido del header (el contenido debe tener z-index>0) */
}

/* 4) Asegura que el contenido (logo, título, hero text) quede por encima */
.header__container,
.brand,
.hero__content {
  position: relative;
  z-index: 2;
}

/* 5) Si existe la pseudo-capa .bg-mist (tu niebla), deje su z-index en 0 */
.bg-mist {
  z-index: 0; /* debe ser mayor que la imagen (-1) y menor que el contenido (2) */
}

/* Ajustes visuales opcionales: si quieres la imagen menos visible, baja saturación/contraste arriba */

/* ===============================
   BLOQUE ESOTÉRICO ESTILO PREMIUM
   =============================== */

.esoteric-block {
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
}

.esoteric-block__inner {
  max-width: 760px;
  margin: 0 auto;
}

.esoteric-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #8fa2ff; /* violeta/azul místico */
  margin-bottom: 0.4rem;
  text-shadow:
    0 0 8px rgba(143,162,255,0.45),
    0 0 18px rgba(143,162,255,0.25);
}

.esoteric-block__lead {
  font-size: 0.95rem;
  color: #b6b9ff;
  margin-bottom: 1.6rem;
  text-shadow: 0 0 6px rgba(182,185,255,0.25);
}

.esoteric-block__text p {
  color: #e8e8f0;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.esoteric-block__text strong {
  color: #e6c87a;
}

.esoteric-block__highlight {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: #e6c87a;
  text-shadow: 0 0 10px rgba(230,200,122,0.4);
  font-weight: 600;
}

.esoteric-block__image {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.esoteric-block__image img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  object-fit: cover;

  box-shadow:
    0 0 25px rgba(143,162,255,0.25),
    0 0 60px rgba(0,0,0,0.6);

  border: 1px solid rgba(255,255,255,0.08);
}

/* ===============================
   BOTÓN WHATSAPP GRANDE (CTA)
   =============================== */

.cta-whatsapp {
  display: inline-block;
  margin-top: 1.8rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cta-whatsapp img {
  width: auto;           /* 👈 deja que la imagen use su tamaño real */
  max-width: 240px;      /* 👈 AJUSTA AQUÍ el tamaño final */
  border-radius: 16px;   /* un poco más compacto */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.45),
    0 0 18px rgba(37, 211, 102, 0.25);
}


.cta-whatsapp:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* ===============================
   VIDEO ESOTÉRICO – SECCIÓN AMARRES
   =============================== */

.esoteric-video video {
  
  width: 100%;
  max-width: 360px; /* 🔽 más pequeño */
  border-radius: 14px;
  box-shadow:
    0 0 24px rgba(143,162,255,0.3),
    0 8px 32px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.esoteric-video video {
  display: block;
  outline: none;
  pointer-events: none; /* evita clics */
}
.esoteric-video {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical */
  margin: 2.5rem auto 0;   /* centra el bloque completo */
  text-align: center;
}
/* ===============================
   COLUMNA FULL WIDTH DETRÁS DEL VIDEO
   =============================== */

.video-column {
  position: relative;
  width: 100vw;                 /* 🔥 de lado a lado */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  padding: 4rem 1.5rem;
  margin-top: 3rem;

  background-image: url("../images/23money.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    inset 0 0 180px rgba(0,0,0,0.85);
}

/* Oscurecer la imagen para que el video destaque */
.video-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* Video encima */
.video-column video {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: auto;
  display: block;
  border-radius: 14px;
}
.video-column--ritual {
  background-image: url("../images/Ritual-chamanico.jpg");
}

/* ===============================
   BLOQUE TESTIMONIOS – PREMIUM
   =============================== */

.testimonials-block {
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}

.testimonials-block__inner {
  max-width: 820px;
  margin: 0 auto;
}

.testimonials-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #8fa2ff;
  margin-bottom: 0.6rem;
  text-shadow:
    0 0 8px rgba(143,162,255,0.45),
    0 0 18px rgba(143,162,255,0.25);
}

.testimonials-block__lead {
  font-size: 0.95rem;
  color: #c3c7ff;
  margin-bottom: 2.2rem;
  text-shadow: 0 0 6px rgba(182,185,255,0.25);
}

/* Imagen */
.testimonials-block__image {
  margin-bottom: 2.8rem;
  display: flex;
  justify-content: center;
}

.testimonials-block__image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 25px rgba(143,162,255,0.25),
    0 0 60px rgba(0,0,0,0.6);
}

/* Video */
.testimonials-block__video {
  display: flex;
  justify-content: center;
}

.testimonials-block__video video {
  width: 100%;
  max-width: 100px;
  border-radius: 16px;
  background: #000;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 28px rgba(143,162,255,0.35),
    0 8px 36px rgba(0,0,0,0.7);
}
@media (min-width: 768px) {
  .testimonials-block__video {
    margin-left: -20px;
  }
}

/* ===============================
   COLUMNA INICIAL – PODEROSOS
   =============================== */

/* ===============================
   IMAGEN PODEROSOS – FULL WIDTH
   =============================== */

.power-column {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
}

.power-column img {
  width: 100%;        /* 🔥 ocupa todo el ancho */
  max-width: 100%;    /* 🔥 sin límites */
  height: auto;
  display: block;

  border-radius: 0;   /* full width real */
  border: none;

  box-shadow:
    inset 0 -80px 120px rgba(0,0,0,0.65);
}
/* ===============================
   IMAGEN TAROT BAJO HERO TITLE
   =============================== */

.hero-tarot {
  width: 100%;
  margin-top: 1.5rem;
}

.hero-tarot img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;

  border-radius: 14px;

  box-shadow:
    0 0 35px rgba(0,0,0,0.6),
    0 0 60px rgba(143,162,255,0.25);
}

/* Desktop: un poco más protagonista */
@media (min-width: 768px) {
  .hero-tarot img {
    max-height: 55vh;
    object-fit: cover;
  }
}
/* ===============================
   HERO LEAD – TAROT GRATIS
   =============================== */

.hero__lead {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #ff3b3b;

  margin-bottom: 1rem;

  text-shadow:
    0 0 12px rgba(255,59,59,0.6),
    0 0 28px rgba(255,59,59,0.35);

  animation: pulseTarot 2.2s infinite ease-in-out;
}

/* Animación sutil y poderosa */
@keyframes pulseTarot {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}
 
/* ===============================
   IMAGEN VELA – TAROT GRATIS
   =============================== */

.hero-vela {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.hero-vela img {
  width: 100%;
  max-width: 260px;   /* tamaño elegante */
  height: auto;
  border-radius: 14px;

  box-shadow:
    0 0 18px rgba(255, 140, 0, 0.35),
    0 0 40px rgba(0, 0, 0, 0.65);

  border: 1px solid rgba(255,255,255,0.08);
}
/* ===============================
   PIE DE PÁGINA EMOCIONAL – PAREJA
   =============================== */

.cta-footer-image {
  margin-top: 3rem;
  text-align: center;
}

.cta-footer-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;

  box-shadow:
    0 0 35px rgba(255, 80, 80, 0.25),
    0 0 70px rgba(0,0,0,0.65);

  border: 1px solid rgba(255,255,255,0.08);
}

.cta-footer-text {
  margin-top: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #ffd6a5;
  text-shadow:
    0 0 10px rgba(255,214,165,0.5),
    0 0 25px rgba(0,0,0,0.6);
}
/* ===============================
   SLIDER TESTIMONIOS – IMÁGENES
   =============================== */

.slider-testimonials {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 2.8rem;
}

.slider-testimonials img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease-in-out;

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 25px rgba(143,162,255,0.25),
    0 0 60px rgba(0,0,0,0.6);
}

/* Imagen visible */
.slider-testimonials img.active {
  opacity: 1;
  position: relative;
}
/* CONTENEDOR CENTRAL CIRCULAR */
.seal-center {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;

  display: flex;              /* 🔥 clave */
  align-items: center;        /* 🔥 centra vertical */
  justify-content: center;    /* 🔥 centra horizontal */

  background: rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(212, 175, 55, 0.8);

  box-shadow:
    0 0 18px rgba(212,175,55,0.6),
    0 0 40px rgba(212,175,55,0.35);
}

/* 🔥 IMAGEN CENTRADA Y AJUSTADA */
.seal-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* rellena sin deformar */
  object-position: center;
  display: block;
}

@media (max-width: 480px) {
  .seal-center {
    width: 110px;
    height: 110px;
    top: 40%;
  }
}

/* ===============================
   CTA WHATSAPP BAJO TEXTO
   =============================== */

.cta-whatsapp--inline {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
