/* =============================================================
   MARCELA S.O.S. — styles.css
   Archetype: Editorial Light Cream (adaptado a paleta de marca)
   1. Tokens
   ============================================================= */
:root {
  --bg:         #faf6ee;   /* crema cálido */
  --bg-2:       #f1ead9;   /* arena */
  --paper:      #ffffff;
  --ink:        #2b2a26;
  --ink-soft:   #4a4944;
  --ink-mute:   #8a8579;
  --sage:       #8a9a78;
  --sage-dark:  #5f6f51;
  --sage-tint:  #e7ebe0;
  --blush:      #cf9a8f;
  --blush-dark: #b5746a;
  --blush-tint: #f3e2dd;
  --gold:       #c2a565;
  --line:       rgba(43, 42, 38, 0.13);
  --shadow:     0 24px 60px -24px rgba(43, 42, 38, 0.28);

  --serif: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --script:"Parisienne", cursive;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --container: 1180px;
}

@property --mesh-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
}
em { font-style: italic; color: var(--blush-dark); }
::selection { background: var(--sage); color: var(--paper); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: 14px;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 960px) { .container { padding-inline: 2.5rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sage-dark); font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush); flex-shrink: 0;
}

.script { font-family: var(--script); font-weight: 400; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: .6rem; }
.center { text-align: center; margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; letter-spacing: .01em;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--sage-dark); color: var(--paper); box-shadow: 0 14px 28px -12px rgba(95,111,81,.55); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -12px rgba(95,111,81,.6); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-blush { background: var(--blush-dark); color: var(--paper); box-shadow: 0 14px 28px -12px rgba(181,116,106,.5); }
.btn-blush:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -12px rgba(181,116,106,.55); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.tag {
  display: inline-block; padding: .3rem .75rem; border-radius: 999px;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  background: var(--sage-tint); color: var(--sage-dark); font-weight: 500;
}

/* =============================================================
   4. Navigation
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), height .4s var(--ease-out);
}
.nav.is-solid {
  background: rgba(250, 246, 238, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 72px;
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text strong { font-family: var(--serif); font-size: 16.5px; letter-spacing: .03em; }
.nav-brand-text span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--ink-soft); position: relative; padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--blush-dark); transition: right .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--ink); }
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(43,42,38,.06); border-radius: 999px; padding: 3px;
}
.lang-switch button {
  padding: .35rem .6rem; border-radius: 999px; font-size: 12px; font-weight: 500;
  letter-spacing: .03em; color: var(--ink-mute); transition: background .3s, color .3s;
}
.lang-switch button.is-active { background: var(--paper); color: var(--ink); box-shadow: 0 2px 6px rgba(43,42,38,.12); }
.nav.is-solid .lang-switch { background: rgba(43,42,38,.07); }
.nav-mobile .lang-switch { background: rgba(43,42,38,.06); margin-top: .5rem; }
.nav-mobile .lang-switch button { font-size: 13px; padding: .45rem .85rem; }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; width: 26px; padding: .4rem; z-index: 600;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; height: 1.5px; width: 100%; background: var(--ink); transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 450;
  background: var(--bg); display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; gap: 1.6rem;
  padding: 2rem 2rem 4rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
.nav-mobile.is-open { transform: translateY(0); }
.nav-mobile a { font-family: var(--serif); font-size: clamp(1.8rem, 8vw, 2.6rem); }
@media (min-width: 960px) { .nav-mobile { display: none; } }

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: radial-gradient(120% 90% at 18% -10%, var(--sage-tint) 0%, transparent 55%),
              radial-gradient(90% 70% at 100% 10%, var(--blush-tint) 0%, transparent 60%),
              var(--bg);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(50px);
  opacity: .55; pointer-events: none;
}
.hero-blob.b1 { width: 420px; height: 420px; background: var(--sage-tint); top: -8%; left: -10%; }
.hero-blob.b2 { width: 320px; height: 320px; background: var(--blush-tint); bottom: -6%; right: -6%; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; gap: 2.5rem;
  padding-block: 3rem 2.5rem;
  width: 100%;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 3rem; } }

.hero-kicker { margin-bottom: 1rem; }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 500;
}
.hero-title .script { display: block; font-size: clamp(2.2rem, 7vw, 3.6rem); color: var(--blush-dark); margin-top: .15rem; }
.hero-sub {
  margin-top: 1.4rem; max-width: 460px;
  font-size: 1.08rem; color: var(--ink-soft); font-weight: 300;
}
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-meta {
  margin-top: 2.2rem; display: flex; gap: 1.8rem; flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--serif); font-size: 1.5rem; }
.hero-meta span { font-size: 12.5px; color: var(--ink-mute); letter-spacing: .03em; }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art svg { width: min(380px, 100%); height: auto; }

/* =============================================================
   6. Marquee
   ============================================================= */
.marquee-wrap {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper); overflow: hidden; padding-block: 1.1rem;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink-mute);
  display: flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "✦"; color: var(--blush); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   7. Pillars (Space / Organization / Simple)
   ============================================================= */
.pillars { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: 2.1rem 1.8rem; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar .num { font-family: var(--serif); font-style: italic; color: var(--blush); font-size: 1rem; }
.pillar h3 { font-size: 1.4rem; margin-top: .5rem; }
.pillar .es { display: block; font-family: var(--sans); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-dark); margin-top: .15rem; }
.pillar p { margin-top: .8rem; color: var(--ink-soft); font-size: .96rem; }

/* =============================================================
   8. Stats / count-up
   ============================================================= */
.stats-band {
  background: var(--sage-dark); color: var(--bg); border-radius: 28px;
  padding: clamp(2.2rem, 5vw, 3.2rem); display: grid; gap: 2rem;
}
@media (min-width: 720px) { .stats-band { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; }
.stat strong { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); display: block; }
.stat span { font-size: 13px; letter-spacing: .04em; opacity: .85; }

/* =============================================================
   9. Packages (bento-style cards)
   ============================================================= */
.packages-grid { display: grid; gap: 1.6rem; }
@media (min-width: 880px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
.package-card {
  position: relative;
  background: var(--paper); border: 1px solid var(--line); border-radius: 26px;
  padding: 2.3rem 1.9rem 2.1rem; display: flex; flex-direction: column;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
.package-card:hover { transform: translateY(-10px) rotate(-0.4deg); box-shadow: var(--shadow); border-color: transparent; }
.package-card.is-featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.package-card.is-featured h3, .package-card.is-featured .package-price { color: var(--bg); }
.package-card.is-featured .package-feature { color: rgba(250,246,238,.82); }
.package-card.is-featured .package-feature svg { color: var(--gold); }
.package-flag {
  position: absolute; top: -13px; right: 1.6rem;
  background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 999px;
}
.package-eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blush-dark); }
.package-card.is-featured .package-eyebrow { color: var(--gold); }
.package-card h3 { font-size: 1.8rem; margin-top: .3rem; }
.package-sub { font-size: .9rem; color: var(--ink-mute); margin-top: .15rem; }
.package-card.is-featured .package-sub { color: rgba(250,246,238,.65); }
.package-price { font-family: var(--serif); font-size: 1.5rem; margin-top: 1.2rem; color: var(--sage-dark); }
.package-hours { font-size: 12.5px; color: var(--ink-mute); margin-top: .2rem; }
.package-card.is-featured .package-hours { color: rgba(250,246,238,.65); }
.package-ideal { font-size: .88rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--ink-soft); }
.package-card.is-featured .package-ideal { border-color: rgba(250,246,238,.18); color: rgba(250,246,238,.82); }
.package-features { margin-top: 1.1rem; display: flex; flex-direction: column; gap: .55rem; flex-grow: 1; }
.package-feature { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: var(--ink-soft); }
.package-feature svg { width: 16px; height: 16px; margin-top: .15rem; color: var(--sage-dark); flex-shrink: 0; }
.package-card .btn { margin-top: 1.5rem; justify-content: center; }

/* =============================================================
   10. Process timeline
   ============================================================= */
.timeline { position: relative; display: grid; gap: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 1.5px;
  background: var(--line);
}
@media (min-width: 720px) { .timeline::before { left: 31px; } }
.timeline-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.3rem; }
@media (min-width: 720px) { .timeline-step { grid-template-columns: 64px 1fr; } }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--paper);
  border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--blush-dark);
  z-index: 1; transition: background .4s, color .4s, border-color .4s;
}
@media (min-width: 720px) { .timeline-num { width: 64px; height: 64px; font-size: 1.4rem; } }
.timeline-step:hover .timeline-num { background: var(--sage-dark); color: var(--bg); border-color: var(--sage-dark); }
.timeline-body { padding-top: .35rem; }
.timeline-body h3 { font-size: 1.3rem; }
.timeline-body p { margin-top: .5rem; color: var(--ink-soft); max-width: 540px; }

/* =============================================================
   11. CTA band
   ============================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sage-tint), var(--blush-tint));
  border-radius: 30px; padding: clamp(2.6rem, 7vw, 4.5rem);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); max-width: 620px; margin-inline: auto; }
.cta-band p { margin-top: 1rem; color: var(--ink-soft); max-width: 460px; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 2rem; }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.2rem 2.2rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2.2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.footer-brand svg { width: 30px; height: 30px; }
.footer-brand strong { font-family: var(--serif); font-size: 17px; }
.footer p.lead { color: var(--ink-mute); max-width: 280px; font-size: .92rem; }
.footer h4 { font-family: var(--sans); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .9rem; font-weight: 500; }
.footer ul { display: flex; flex-direction: column; gap: .6rem; }
.footer ul a { font-size: .94rem; color: var(--ink-soft); transition: color .3s; }
.footer ul a:hover { color: var(--blush-dark); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  font-size: 12.5px; color: var(--ink-mute);
}

/* =============================================================
   13. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--sage-dark); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(95,111,81,.6);
  transition: transform .45s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08) rotate(6deg); }
.wa-float svg { width: 27px; height: 27px; }

/* =============================================================
   14. Custom cursor (desktop only, functional micro-interaction)
   ============================================================= */
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px;
  border: 1.5px solid var(--sage-dark); border-radius: 50%;
  pointer-events: none; z-index: 9000; opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .3s var(--ease-out), width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
  mix-blend-mode: difference;
}
.cursor-ring.is-ready { opacity: .8; }
.cursor-ring.is-hover { width: 52px; height: 52px; border-color: var(--blush-dark); }
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none; } }

/* =============================================================
   15. Page header (sub-pages)
   ============================================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 3.5rem); padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--sage-tint) 0%, var(--bg) 100%);
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); margin-top: .7rem; max-width: 720px; }
.page-hero p { margin-top: 1.1rem; max-width: 540px; color: var(--ink-soft); font-size: 1.05rem; }

/* =============================================================
   16. Responsive base adjustments
   ============================================================= */
@media (min-width: 540px) { .hero-actions { gap: 1.1rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

/* =============================================================
   17. Reduced motion (ONLY intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 60s; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   18. Icon circle + value grid (Sobre Mí)
   ============================================================= */
.icon-circle {
  width: 50px; height: 50px; border-radius: 50%; background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; color: var(--sage-dark); }
.value-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { display: flex; flex-direction: column; gap: 1rem; padding: 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; }
.value-card h3 { font-size: 1.15rem; }
.value-card p { font-size: .92rem; color: var(--ink-mute); }

/* =============================================================
   19. About split layout
   ============================================================= */
.about-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .about-split { grid-template-columns: .95fr 1.05fr; gap: 3.5rem; } }
.about-split .quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ink); border-left: 3px solid var(--blush); padding-left: 1.4rem; margin-top: 1.4rem;
}
.about-art { display: flex; justify-content: center; }
.about-art svg { width: min(320px, 100%); }

/* =============================================================
   20. Contact page
   ============================================================= */
.contact-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: 1.8rem; display: flex; flex-direction: column; gap: .8rem;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card h3 { font-size: 1.15rem; }
.contact-card p { font-size: .9rem; color: var(--ink-mute); flex-grow: 1; }
.contact-card .btn { align-self: flex-start; }

.contact-main {
  background: var(--ink); color: var(--bg); border-radius: 30px;
  padding: clamp(2.4rem, 6vw, 4rem); display: grid; gap: 2.4rem; align-items: center;
}
@media (min-width: 960px) { .contact-main { grid-template-columns: 1.1fr .9fr; } }
.contact-main h2 { color: var(--bg); font-size: clamp(2rem, 4.5vw, 2.8rem); }
.contact-main p { color: rgba(250,246,238,.78); margin-top: 1rem; max-width: 420px; }
.contact-main .btn-blush { margin-top: 1.6rem; }
.contact-quick { display: flex; flex-direction: column; gap: .9rem; }
.contact-quick a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.3rem; border-radius: 14px; background: rgba(250,246,238,.08);
  border: 1px solid rgba(250,246,238,.14); font-size: .94rem;
  transition: background .3s, transform .4s var(--ease-out);
}
.contact-quick a:hover { background: rgba(250,246,238,.16); transform: translateX(4px); }

/* =============================================================
   21. FAQ accordion
   ============================================================= */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; font-family: var(--serif); font-size: 1.02rem; text-align: left; gap: 1rem;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blush-dark); transition: transform .4s var(--ease-out); }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .94rem; max-width: 600px; }
.faq-item.is-open .faq-a { max-height: 240px; }

/* =============================================================
   22. Comparison note (servicios)
   ============================================================= */
.note-band {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--blush-tint); border-radius: 18px; padding: 1.4rem 1.6rem;
  font-size: .92rem; color: var(--ink-soft);
}
.note-band svg { width: 22px; height: 22px; color: var(--blush-dark); flex-shrink: 0; margin-top: .1rem; }
