/* =========================================================
   HOLISSTIC MARKETING — DESIGN TOKENS (dirección bold/playful)
   ========================================================= */
:root {
  --purple-900: #2e0a52;
  --purple-700: #4b0a7d;
  --purple: #6a0dad;
  --purple-light: #d9bcf2; /* lila pop — tint del morado, acento secundario */
  --purple-pale: #f1e6fb; /* lila muy claro, fondo de tarjetas */
  --gold: #ffd700; /* amarillo secundario — solo para estrellitas y detalles pequeños */
  --cream: #fbf2e4; /* fondo cálido principal */
  --white: #ffffff;
  --ink: #241536;
  --ink-soft: #5b4e71;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1340px;
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 40px;
  --radius-full: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   RESET
   ========================================================= */
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--purple-900);
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--purple-900);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   TAG PILL (eyebrow tipo etiqueta) — NO son botones:
   estilo deliberadamente distinto al de .btn (borde en vez de
   relleno sólido) para que nunca se confundan con un CTA clicable.
   ========================================================= */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-pale);
  color: var(--purple);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.tag-pill--dark {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
}
.text-gold {
  color: var(--gold);
}
.text-gold-light {
  color: var(--gold);
}
.tag-pill--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}
.tag-pill--center {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: fit-content;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
}
.btn:active {
  transform: translateY(0) rotate(0);
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(106, 13, 173, 0.3);
}
.btn--primary:hover {
  background: var(--purple-700);
  box-shadow: 0 14px 28px rgba(106, 13, 173, 0.4);
}

.btn--gold {
  background: var(--gold);
  color: var(--purple-900);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  border: 2px solid transparent;
}
.btn--gold:hover {
  opacity: 0.88;
}

.btn--outline {
  background: transparent;
  color: var(--purple-900);
  border: 2px solid var(--purple);
}
.btn--outline:hover {
  background: var(--purple);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--round-arrow {
  border-radius: var(--radius-full);
}

.btn--lg {
  padding: 18px 34px;
  font-size: 1.02rem;
}
.btn--sm {
  padding: 9px 16px;
  font-size: 0.85rem;
}
.btn--full {
  width: 100%;
}

.icon-wa,
.icon-mail,
.icon-ig {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* =========================================================
   NAVBAR — barra completa en morado
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--purple);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.is-scrolled {
  box-shadow: 0 14px 34px rgba(46, 10, 82, 0.28);
}
.navbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.logo-mark--wordmark {
  height: 58px;
}
.logo-mark__img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================
   MARIPOSA — emblema de marca, watermark decorativo
   ========================================================= */
.butterfly-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}
.butterfly-watermark--hero {
  width: 260px;
  height: auto;
  top: -8%;
  right: -8%;
  opacity: 0.22;
  transform: rotate(6deg);
  z-index: 1;
  animation: flutter 7s ease-in-out infinite;
}
.butterfly-watermark--method {
  width: 360px;
  height: auto;
  top: 4%;
  right: 2%;
  opacity: 0.18;
}
.butterfly-watermark--manifesto {
  width: 220px;
  height: auto;
  top: -20px;
  left: 50%;
  margin-left: -110px;
  opacity: 0.2;
}
@keyframes flutter {
  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-10px);
  }
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.navbar__nav {
  display: flex;
  gap: 8px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.navbar__ig svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.navbar__ig:hover {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.navbar__cta {
  margin-right: 0;
  padding: 14px 26px;
  font-size: 0.95rem;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.navbar__burger span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.navbar__burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.navbar__burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   DOODLES (garabatos dibujados a mano) + BLOBS
   ========================================================= */
.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.doodle--star1 {
  width: 44px;
  top: 16%;
  left: 6%;
  animation: spin-slow 14s linear infinite;
}
.doodle--star2 {
  width: 30px;
  bottom: 12%;
  left: 16%;
  animation: spin-slow 10s linear infinite reverse;
}
.doodle--star3 {
  position: absolute;
  width: 34px;
  top: -14px;
  right: 18%;
  animation: spin-slow 12s linear infinite;
}
.doodle--star4 {
  position: absolute;
  width: 32px;
  top: 60px;
  right: 8%;
  animation: spin-slow 11s linear infinite;
}
.doodle--star5 {
  position: absolute;
  width: 30px;
  top: 10px;
  left: calc(50% - 260px);
  animation: spin-slow 13s linear infinite reverse;
}
.doodle--star6 {
  position: absolute;
  width: 30px;
  top: 8%;
  right: 10%;
  animation: spin-slow 12s linear infinite;
}
.doodle--swirl {
  width: 110px;
  top: 60%;
  right: 8%;
  opacity: 0.7;
}
@keyframes spin-slow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 0;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
}
.hero__title {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.96;
  margin-bottom: 26px;
  font-weight: 800;
}
.hero__title-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  -webkit-text-stroke: 0;
}
.hero__lead {
  font-size: 1.28rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 38px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__visual {
  position: relative;
  height: 520px;
}
.hero__blob-shape {
  position: absolute;
  inset: 6% 4%;
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  background: linear-gradient(150deg, var(--purple) 0%, var(--purple-700) 100%);
}
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(
    135deg,
    var(--purple-pale),
    var(--purple-pale) 12px,
    var(--white) 12px,
    var(--white) 24px
  );
  border: 3px dashed var(--purple);
  color: var(--purple);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 20px;
}
.doodle--star3 {
  z-index: 3;
}
.badge-spin {
  position: absolute;
  bottom: -8%;
  left: -14%;
  width: 150px;
  height: 150px;
  z-index: 3;
  animation: spin-slow 18s linear infinite;
}
.badge-spin__svg {
  width: 100%;
  height: 100%;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(46, 10, 82, 0.3);
}
.badge-spin__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: var(--white);
}

.stat-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 56px;
}
.stat-pill {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 20px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px rgba(46, 10, 82, 0.12);
}
.stat-pill--purple {
  background: var(--purple);
  color: var(--white);
}
.stat-pill--gold {
  background: var(--purple-light);
  color: var(--purple-900);
}
.stat-pill--cream {
  background: var(--white);
  color: var(--purple-900);
  border: 2px solid var(--purple-pale);
}
.stat-pill__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
}
.stat-pill__plus {
  font-weight: 800;
  font-size: 1.5rem;
  margin-right: 4px;
}
.stat-pill__label {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.92;
}

.press-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(46, 10, 82, 0.1);
  padding: 30px 0;
  background: var(--white);
}
.press-strip--dark {
  background: transparent;
  border-top: 1px solid rgba(46, 10, 82, 0.1);
  margin-top: 64px;
}
.press-strip__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: scroll-strip 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  color: var(--purple-900);
  align-items: center;
}
.press-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.press-item__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--purple-pale);
  border: 2px dashed var(--purple-light);
  background-size: cover;
  background-position: center;
}
.press-item__sep {
  color: var(--gold);
  font-size: 1.3rem;
}
@keyframes scroll-strip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   SECTIONS — generic
   ========================================================= */
.section {
  padding: 120px 0;
  position: relative;
}
.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}
.section--purple-deep {
  background: linear-gradient(165deg, var(--purple) 0%, var(--purple-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.section--manifesto {
  background: var(--cream);
  padding: 88px 0;
  position: relative;
}
.section--contact {
  background: var(--purple);
  color: var(--white);
  overflow: hidden;
}

.h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
}
.h2--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
}
.h2--light {
  color: var(--white);
}
.section-lead {
  max-width: 58ch;
  margin: 0 0 60px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}
.section-lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
}

/* =========================================================
   BIO CARD (Sobre Holisstic)
   ========================================================= */
.bio-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(46, 10, 82, 0.25);
}
.bio-card__photo {
  background: repeating-linear-gradient(
    135deg,
    var(--purple-pale),
    var(--purple-pale) 12px,
    var(--cream) 12px,
    var(--cream) 24px
  );
  min-height: 340px;
  overflow: hidden;
}
.bio-card__photo-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.bio-card__body {
  padding: 60px 56px;
}
.bio-card__body p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.bio-card__quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--purple) !important;
  border-left: 4px solid var(--ink);
  padding-left: 18px;
  margin: 24px 0 !important;
}
.bio-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.bio-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--purple-900);
  font-size: 1rem;
}
.bio-card__dot {
  color: var(--gold);
  font-size: 0.55rem;
}

/* =========================================================
   MÉTODO
   ========================================================= */
.method {
  position: relative;
  padding-top: 12px;
}
.method__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.method__step {
  border-radius: var(--radius-m);
  padding: 42px 32px;
  position: relative;
  opacity: 0;
  transform: translateY(28px) rotate(-1deg);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.method__step.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.method__step--gold {
  background: var(--gold);
  color: var(--purple-900);
}
.method__step--cream {
  background: var(--white);
  color: var(--purple-900);
}
.method__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 22px;
}
.method__step--cream .method__badge {
  background: var(--purple);
  color: var(--white);
}
.method__step h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.method__step p {
  color: inherit;
  opacity: 0.85;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.method__quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.98rem;
  opacity: 1 !important;
  padding-top: 14px;
  border-top: 1px dashed currentColor;
}

/* =========================================================
   SERVICIOS — carousel
   ========================================================= */
.carousel {
  position: relative;
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.service-card {
  flex: 0 0 calc(33.333% - 17px);
  border-radius: var(--radius-m);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 34px -20px rgba(46, 10, 82, 0.28);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}
.service-card--purple {
  background: var(--purple);
  color: var(--white);
}
.service-card--gold {
  background: var(--gold);
  color: var(--purple-900);
}
.service-card--white {
  background: var(--white);
  color: var(--purple-900);
  border: 2px solid var(--purple-pale);
}
.service-card__icon {
  width: 56px;
  height: 56px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-size: 1.35rem;
  color: inherit;
}
.service-card__teaser {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.02rem;
  opacity: 0.9;
}
.service-card__list {
  margin: 6px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  opacity: 0.88;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* CTA de cada tarjeta de servicio: ahora es un botón real (pill con
   fondo), con un color de contraste distinto según la tarjeta, para
   que se note claramente que es clicable y se diferencien entre sí. */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  margin-top: auto;
  width: fit-content;
  transition:
    transform 0.25s var(--ease),
    background 0.2s,
    box-shadow 0.25s var(--ease);
}
.service-card__link:hover {
  transform: translateY(-3px) rotate(-1deg);
}
.service-card--purple .service-card__link {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.service-card--purple .service-card__link:hover {
  background: var(--purple-pale);
}
.service-card--gold .service-card__link {
  background: var(--purple-900);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(46, 10, 82, 0.22);
}
.service-card--gold .service-card__link:hover {
  background: var(--purple-700);
}
.service-card--white .service-card__link {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(106, 13, 173, 0.22);
}
.service-card--white .service-card__link:hover {
  background: var(--purple-700);
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 10px 24px -10px rgba(46, 10, 82, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 5;
  transition:
    background 0.2s,
    color 0.2s;
}
.carousel__arrow:hover {
  background: var(--purple);
  color: var(--white);
}
.carousel__arrow--prev {
  left: -10px;
}
.carousel__arrow--next {
  right: -10px;
}

.carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-pale);
  transition:
    background 0.2s,
    width 0.2s;
}
.carousel__dots button.is-active {
  background: var(--purple);
  width: 24px;
  border-radius: 6px;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.services-cta p {
  color: var(--ink-soft);
  max-width: 48ch;
}

/* =========================================================
   TESTIMONIOS — grid
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 64px;
}
.testimonial-tile {
  background: var(--purple-pale);
  border-radius: var(--radius-m);
  padding: 48px 44px;
  position: relative;
  flex: 0 0 100%;
  max-width: 760px;
  margin: 0 auto;
}
.press-strip-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 56px 0 0;
}
.press-strip-label:first-of-type {
  margin-top: 64px;
}
.testimonial-tile--gold {
  background: var(--purple);
}
.testimonial-tile__quote-mark {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--purple-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
}
.testimonial-tile--gold .testimonial-tile__quote-mark {
  color: rgba(255, 255, 255, 0.18);
}
.testimonial-tile p {
  font-size: 1.06rem;
  color: var(--purple-900);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-tile--gold p {
  color: var(--white);
}
.testimonial-tile__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.testimonial-tile--gold .avatar {
  background: var(--white);
  color: var(--purple-900);
}
.testimonial-tile__author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--purple-900);
}
.testimonial-tile__author span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.testimonial-tile--gold .testimonial-tile__author strong {
  color: var(--white);
}
.testimonial-tile--gold .testimonial-tile__author span {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   MANIFIESTO
   ========================================================= */
.manifesto {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.5;
  text-align: center;
  color: var(--purple-900);
  max-width: 900px;
  margin: 0 auto;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.faq__intro p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 2px solid var(--purple-pale);
  border-radius: var(--radius-s);
  padding: 20px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--purple-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-900);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 0.94rem;
}

/* =========================================================
   CONTACTO
   ========================================================= */
.contact-band {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.contact-band__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  animation: spin-slow 20s linear infinite;
}
.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 44ch;
  margin: 0 0 32px;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-s);
  transition:
    background 0.2s,
    transform 0.2s;
}
.contact__channel:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}
.contact__note {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-s);
  padding: 20px 22px;
}
.contact__note p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.6;
}
.contact__note strong {
  color: var(--white);
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 52px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}
.contact__form h3 {
  font-size: 1.5rem;
  margin-bottom: 26px;
  color: var(--purple-900);
  text-transform: none;
}
.field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--hidden {
  position: absolute;
  left: -9999px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.field input,
.field textarea {
  padding: 13px 14px;
  border: 2px solid var(--purple-pale);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--purple);
  background: var(--white);
  outline: none;
}
.form-note {
  min-height: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 12px 0 0;
}
.form-note.is-success {
  color: #1a7a3c;
}
.form-note.is-error {
  color: #b3261e;
}
.form-fineprint {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--purple);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar__logo--footer {
  color: var(--white);
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.88rem;
  max-width: 26ch;
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__soon {
  opacity: 0.5;
  font-style: italic;
}
.footer__bottom {
  padding-top: 24px;
  font-size: 0.8rem;
  text-align: center;
}

/* =========================================================
   WHATSAPP FLOAT + COOKIE BANNER
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.4);
  z-index: 400;
  animation: pulse-wa 2.8s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow:
      0 12px 28px -8px rgba(0, 0, 0, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 12px 28px -8px rgba(0, 0, 0, 0.4),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 520px;
  background: var(--purple-700);
  color: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-m);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.5);
  z-index: 600;
}
.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1050px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    height: 320px;
    order: -1;
  }
  .bio-card {
    grid-template-columns: 1fr;
  }
  .bio-card__photo {
    min-height: 220px;
  }
  .bio-card__photo-img {
    min-height: 220px;
  }
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .method__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    flex: 0 0 calc(50% - 12px);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .navbar__inner {
    padding: 0 18px;
  }
  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 10px;
    right: 10px;
    background: var(--purple-700);
    flex-direction: column;
    padding: 14px;
    gap: 2px;
    border-radius: var(--radius-m);
    box-shadow: 0 20px 40px rgba(46, 10, 82, 0.35);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s,
      transform 0.25s;
  }
  .navbar__nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar__nav .nav-link {
    padding: 14px 16px;
  }
  .navbar__actions {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
  .method__list {
    grid-template-columns: 1fr;
  }
  .service-card {
    flex: 0 0 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .contact__form-wrap {
    padding: 26px;
  }
  .bio-card__list {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    gap: 10px;
  }
  .stat-pill {
    padding: 12px 16px;
  }
}