/* =========================================================
   Centro Esotérico del Amor
   Landing multi-país - Estilo chamánico ancestral premium
   ========================================================= */

/* -------------------------
   Reset base
------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #080503;
  --bg-soft: #120b08;
  --bg-card: rgba(20, 12, 8, 0.78);
  --bg-card-solid: #160d09;

  --gold: #d9a441;
  --gold-soft: #f4cf7a;
  --gold-dark: #8a5c19;
  --amber: #ffb347;
  --copper: #b76832;
  --wine: #4b0f13;
  --red-deep: #2b0708;

  --text: #fff4df;
  --muted: #c9b79a;
  --muted-2: #8f7a62;

  --border: rgba(244, 207, 122, 0.18);
  --border-strong: rgba(244, 207, 122, 0.34);

  --shadow-gold: 0 0 48px rgba(217, 164, 65, 0.22);
  --shadow-card: 0 30px 90px rgba(0, 0, 0, 0.48);

  --font-title: "Cinzel", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.16), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(105, 20, 12, 0.38), transparent 32%),
    linear-gradient(180deg, #050302 0%, var(--bg) 44%, #030201 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: #130906;
}

/* -------------------------
   Global layout
------------------------- */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 40px, 860px);
}

.section-padding {
  padding: 110px 0;
  position: relative;
}

.section-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.15rem, 8vw, 7.8rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

strong {
  color: var(--text);
}

/* -------------------------
   Background effects
------------------------- */

.page-glow {
  position: fixed;
  inset: auto -20% -40% -20%;
  height: 520px;
  pointer-events: none;
  z-index: -4;
  background:
    radial-gradient(circle, rgba(217, 164, 65, 0.14), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(111, 23, 12, 0.28), transparent 46%);
  filter: blur(50px);
}

.floating-particles {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.floating-particles span {
  position: absolute;
  bottom: -40px;
  border-radius: 999px;
  background: rgba(244, 207, 122, 0.85);
  box-shadow: 0 0 20px rgba(244, 207, 122, 0.65);
  opacity: 0;
  animation-name: particleRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes particleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.5);
    opacity: 0;
  }

  12% {
    opacity: 0.7;
  }

  88% {
    opacity: 0.35;
  }

  100% {
    transform: translate3d(30px, -110vh, 0) scale(1.4);
    opacity: 0;
  }
}

/* -------------------------
   Header
------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: min(100% - 32px, 1240px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(244, 207, 122, 0.12);
  border-radius: 999px;
  background: rgba(7, 4, 3, 0.5);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  transition: 0.35s ease;
}

.site-header.is-scrolled {
  margin-top: 10px;
  background: rgba(7, 4, 3, 0.82);
  border-color: rgba(244, 207, 122, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #150905;
  background:
    radial-gradient(circle at 30% 30%, #fff1b6, transparent 35%),
    linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  box-shadow: 0 0 28px rgba(217, 164, 65, 0.36);
  font-weight: 900;
}

.brand-text {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff6e8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 244, 223, 0.76);
  font-size: 0.91rem;
  font-weight: 600;
}

.nav-menu a {
  position: relative;
  transition: 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: var(--gold-soft);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 188px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #f3fff7;
  font-weight: 900;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #075e32, #128c4a, #25d366);
  border: 1px solid rgba(37, 211, 102, 0.48);
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.28),
    0 0 24px rgba(37, 211, 102, 0.20);
  transition: 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(37, 211, 102, 0.38),
    0 0 34px rgba(37, 211, 102, 0.30);
}

.whatsapp-svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}

/* -------------------------
   Buttons
------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 900;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn-primary {
  color: #160906;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(135deg, var(--gold-soft), var(--gold), var(--copper));
  box-shadow:
    0 16px 40px rgba(217, 164, 65, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
a[data-whatsapp-link].btn-primary {
  color: #f3fff7;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #0a2513, #128c4a, #25d366);
  box-shadow:
    0 16px 40px rgba(37, 211, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-card:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(244, 207, 122, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(244, 207, 122, 0.48);
  background: rgba(244, 207, 122, 0.08);
}

.btn-card {
  width: 100%;
  color: #170906;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.btn-large {
  min-height: 64px;
  padding-inline: 34px;
}

/* -------------------------
   Reveal animations
------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

[data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

[data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}

/* -------------------------
   Hero
------------------------- */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 155px 0 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 2, 0.96) 0%, rgba(5, 3, 2, 0.72) 38%, rgba(5, 3, 2, 0.3) 100%),
    radial-gradient(circle at 74% 44%, rgba(217, 164, 65, 0.34), transparent 30%),
    url("../img/hero/hero-principal.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroBreath 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 207, 122, 0.12), transparent 34%),
    linear-gradient(to bottom, rgba(5, 3, 2, 0.1), var(--bg) 95%);
}

@keyframes heroBreath {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.09) translateX(-1%);
  }
}

.hero-content {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-bottom: 26px;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.72);
}

.hero-subtitle {
  max-width: 770px;
  margin: 0 0 32px;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  color: rgba(255, 244, 223, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-warning {
  max-width: 690px;
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--gold-soft);
  font-weight: 700;
}

.hero-card {
  position: relative;
  isolation: isolate;
  padding: 30px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(16, 9, 6, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    radial-gradient(circle at 70% 20%, rgba(217, 164, 65, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.card-orbit {
  position: absolute;
  top: -90px;
  right: -100px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(244, 207, 122, 0.18);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.card-orbit::before,
.card-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.card-orbit::before {
  inset: 34px;
  border: 1px solid rgba(244, 207, 122, 0.12);
}

.card-orbit::after {
  width: 12px;
  height: 12px;
  top: 24px;
  left: 50%;
  background: var(--gold);
  box-shadow: 0 0 26px var(--gold);
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-card-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(244, 207, 122, 0.18);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
}

.hero-card p {
  margin-bottom: 24px;
}

.hero-card-phone {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(244, 207, 122, 0.16);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.28);
}

.hero-card-phone small,
.phone-box small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-card-phone strong,
.phone-box strong {
  font-size: 1.2rem;
}

.hero-bottom-strip {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(100% - 40px, 1180px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(244, 207, 122, 0.14);
  border-radius: 999px;
  background: rgba(6, 3, 2, 0.52);
  backdrop-filter: blur(16px);
  color: rgba(255, 244, 223, 0.68);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* -------------------------
   Pain / signals
------------------------- */

.pain-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.12), transparent 38%),
    linear-gradient(180deg, var(--bg), #0d0604);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.signal-card,
.service-card,
.testimonial-card,
.process-step,
.faq-item,
.mystic-panel {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(17, 9, 6, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.signal-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: 0.3s ease;
}

.signal-card span {
  display: block;
  margin-bottom: 46px;
  color: rgba(244, 207, 122, 0.4);
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
}

.signal-card h3 {
  margin-bottom: 14px;
}

.signal-card p {
  margin: 0;
}

.signal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 207, 122, 0.4);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.44);
}

.signal-card:hover::before {
  opacity: 1;
}

/* -------------------------
   Services
------------------------- */

.services-section {
  background:
    linear-gradient(180deg, #0d0604, #050302),
    radial-gradient(circle at 20% 20%, rgba(75, 15, 19, 0.28), transparent 30%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.32s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(5, 3, 2, 0.94) 0%, rgba(5, 3, 2, 0.78) 38%, rgba(5, 3, 2, 0.32) 100%);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 10%, rgba(244, 207, 122, 0.18), transparent 30%),
    linear-gradient(135deg, transparent, rgba(217, 164, 65, 0.06));
  transition: 0.32s ease;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:nth-child(1) {
  background-image: url("../img/servicios/union-pareja.webp");
}

.service-card:nth-child(2) {
  background-image: url("../img/servicios/retorno-armonizacion.webp");
}

.service-card:nth-child(3) {
  background-image: url("../img/servicios/endulzamientos.webp");
}

.service-card:nth-child(4) {
  background-image: url("../img/servicios/limpiezas-espirituales.webp");
}

.service-card:nth-child(5) {
  background-image: url("../img/servicios/proteccion-energetica.webp");
}

.service-card:nth-child(6) {
  background-image: url("../img/servicios/apertura-caminos.webp");
}

/* -------------------------
   Split / third person
------------------------- */

.third-person-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgba(217, 164, 65, 0.16), transparent 32%),
    linear-gradient(180deg, #050302, #0e0705);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 0.95fr;
  gap: 52px;
  align-items: center;
}

.split-copy p {
  max-width: 680px;
}

.split-copy .btn {
  margin-top: 18px;
}

.mystic-panel {
  position: relative;
  padding: 42px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.mystic-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 164, 65, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(75, 15, 19, 0.18), transparent);
  pointer-events: none;
}

.panel-line {
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mystic-panel h3 {
  margin-bottom: 24px;
}

.mystic-panel ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mystic-panel li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.mystic-panel li::before {
  content: "✦";
  color: var(--gold-soft);
}

/* -------------------------
   Testimonials
------------------------- */

.testimonials-section {
  background:
    linear-gradient(180deg, #0e0705, #050302),
    radial-gradient(circle at 10% 20%, rgba(217, 164, 65, 0.14), transparent 28%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: 0.3s ease;
}

.stars {
  margin-bottom: 24px;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
}

.testimonial-card p {
  margin-bottom: 22px;
  color: rgba(255, 244, 223, 0.82);
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  color: var(--gold-soft);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 207, 122, 0.36);
}

/* -------------------------
   Process
------------------------- */

.process-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 15, 19, 0.36), transparent 34%),
    #050302;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 42px;
  right: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(244, 207, 122, 0.12);
  border-radius: 50%;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 42px;
  color: rgba(244, 207, 122, 0.45);
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  margin: 0;
}

.process-step:hover {
  transform: translateY(-7px);
  border-color: rgba(244, 207, 122, 0.38);
}

/* -------------------------
   Gallery
------------------------- */

.gallery-section {
  background:
    linear-gradient(180deg, #050302, #100805);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 22px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-card);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.52), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(217, 164, 65, 0.16), transparent 34%);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1.08);
}

/* -------------------------
   FAQ
------------------------- */

.faq-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.12), transparent 34%),
    #100805;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #170906;
  background: var(--gold);
  transition: 0.25s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
}

.faq-item.is-open {
  border-color: rgba(244, 207, 122, 0.42);
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 24px;
}

/* -------------------------
   Final CTA
------------------------- */

.final-cta-section {
  background:
    linear-gradient(180deg, #100805, #050302);
}

.final-cta-card {
  position: relative;
  padding: clamp(34px, 7vw, 74px);
  border: 1px solid rgba(244, 207, 122, 0.32);
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 3, 2, 0.88), rgba(5, 3, 2, 0.72)),
    radial-gradient(circle at 80% 30%, rgba(217, 164, 65, 0.28), transparent 36%),
    url("../img/hero/contacto-final.webp");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 207, 122, 0.12), transparent 28%),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.final-cta-card > * {
  position: relative;
  z-index: 2;
}

.final-cta-card h2 {
  max-width: 880px;
  margin-bottom: 22px;
}

.final-cta-card p {
  max-width: 760px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 34px 0 26px;
}

.phone-box {
  min-width: 260px;
  padding: 18px 20px;
  border: 1px solid rgba(244, 207, 122, 0.2);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.legal-note {
  max-width: 940px !important;
  margin: 0;
  color: rgba(201, 183, 154, 0.76);
  font-size: 0.88rem;
}

/* -------------------------
   Floating WhatsApp
------------------------- */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px 12px 22px;
  border: 1px solid rgba(37, 211, 102, 0.48);
  border-radius: 999px;
  color: #f3fff7;
  background: linear-gradient(135deg, #064d29, #128c4a, #25d366);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(37, 211, 102, 0.36);
  font-weight: 900;
  animation: whatsPulse 2.6s ease-in-out infinite;
}

.floating-whatsapp strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #075e32;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(37, 211, 102, 0.18),
    0 0 18px rgba(255, 255, 255, 0.18);
}

.floating-whatsapp strong .whatsapp-svg {
  width: 23px;
  height: 23px;
}

@keyframes whatsPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 20px 54px rgba(0, 0, 0, 0.42),
      0 0 35px rgba(37, 211, 102, 0.30);
  }

  50% {
    transform: translateY(-5px);
    box-shadow:
      0 26px 70px rgba(0, 0, 0, 0.5),
      0 0 52px rgba(37, 211, 102, 0.48);
  }
}

/* -------------------------
   Footer
------------------------- */

.site-footer {
  padding: 34px 0 96px;
  border-top: 1px solid rgba(244, 207, 122, 0.12);
  background: #050302;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

/* -------------------------
   Responsive
------------------------- */

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .signal-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .nav-menu {
    display: none;
  }

  .brand-text {
    max-width: 170px;
    line-height: 1.1;
    font-size: 0.95rem;
  }

  .header-cta {
    padding-inline: 16px;
  }

  .hero-section {
    padding-top: 132px;
  }

  .hero-bottom-strip {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .signal-grid,
  .testimonials-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item.large {
    height: 280px;
    grid-row: auto;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container,
  .container.narrow,
  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 78px 0;
  }

  .site-header {
    padding: 10px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    font-size: 0.82rem;
    max-width: 145px;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-card,
  .signal-card,
  .service-card,
  .testimonial-card,
  .process-step,
  .mystic-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-card h2 {
    font-size: 1.8rem;
  }

  .final-cta-card {
    border-radius: 28px;
  }

  .final-cta-actions {
    align-items: stretch;
  }

  .phone-box {
    width: 100%;
  }

  .floating-whatsapp {
  left: 14px;
  right: 14px;
  bottom: 14px;
  justify-content: center;
}

.floating-whatsapp span {
  display: inline;
  font-size: 0.92rem;
}

.header-cta span {
  display: none;
}

.header-cta {
  min-width: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
}

.header-cta .whatsapp-svg {
  width: 23px;
  height: 23px;
}

  .site-footer {
    padding-bottom: 98px;
  }
}

/* -------------------------
   Reduced motion
------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------------
   Legal pages / Thank you
------------------------- */

.legal-page {
  padding-top: 110px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.12), transparent 36%),
    linear-gradient(180deg, #080503, #050302);
}

.legal-page h1,
.thankyou-page h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.legal-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(244, 207, 122, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(17, 9, 6, 0.74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.03em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin-bottom: 0;
}

.thankyou-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.18), transparent 36%),
    linear-gradient(180deg, #080503, #050302);
}

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.thankyou-card {
  text-align: center;
}

.thankyou-card .eyebrow {
  justify-content: center;
}

.thankyou-card .eyebrow::before {
  display: none;
}

.thankyou-card h1 {
  margin-bottom: 24px;
}

.thankyou-card p {
  margin-inline: auto;
}

.thankyou-card .final-cta-actions {
  justify-content: center;
}

@media (max-width: 560px) {
  .legal-page {
    padding-top: 90px;
  }

  .legal-card {
    border-radius: 24px;
  }

  .thankyou-section {
    padding: 70px 0;
  }
}

/* -------------------------
   Country selector page
------------------------- */

.country-select-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.18), transparent 36%),
    linear-gradient(180deg, #080503, #050302);
}

.country-select-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.country-select-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 2, 0.92), rgba(5, 3, 2, 0.68)),
    url("../img/hero/hero-principal.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transform: scale(1.04);
}

.country-select-section .container {
  position: relative;
  z-index: 2;
}

.country-select-card {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(244, 207, 122, 0.26);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(12, 7, 5, 0.78);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.52),
    0 0 60px rgba(217, 164, 65, 0.18);
  backdrop-filter: blur(18px);
  text-align: center;
}

.country-select-card .eyebrow {
  justify-content: center;
}

.country-select-card .eyebrow::before {
  display: none;
}

.country-select-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.country-select-card > p {
  max-width: 680px;
  margin: 0 auto 36px;
  color: rgba(255, 244, 223, 0.82);
  font-size: 1.05rem;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.country-card {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(244, 207, 122, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 10%, rgba(217, 164, 65, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.045);
  text-align: left;
  transition: 0.28s ease;
}

.country-card::before {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(244, 207, 122, 0.45);
  font-size: 1.2rem;
}

.country-card span {
  color: var(--text);
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
}

.country-card strong {
  color: var(--gold-soft);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.country-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 207, 122, 0.42);
  background:
    radial-gradient(circle at 70% 10%, rgba(217, 164, 65, 0.26), transparent 34%),
    rgba(244, 207, 122, 0.07);
}

@media (max-width: 980px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .country-select-section {
    padding: 48px 0;
  }

  .country-select-card {
    border-radius: 28px;
  }

  .country-grid {
    grid-template-columns: 1fr;
  }

  .country-card,
  .country-card:last-child {
    grid-column: auto;
  }
}