/* ========================================================================
   EMPATHISER — Design System
   Marine / Sky / Rose · Fraunces (display) + Lato (body)
   Paper cut-out + soft-3D moderate · Premium / Trustworthy / Empathetic
   ======================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand colors */
  --c-marine: #23314A;
  --c-marine-700: #1A2538;
  --c-marine-300: #4A5670;
  --c-sky: #8FA1B1;
  --c-sky-300: #B5C2CE;
  --c-sky-100: #DCE3EA;
  --c-rose: #C94A52;
  --c-rose-300: #E07880;
  --c-rose-100: #F5B0B5;
  --c-rose-50: #FDE8EA;

  /* Neutrals — cool beige scale (chosen over warm grays) */
  --c-white: #FFFFFF;
  --c-beige-50: #FBF8F3;
  --c-beige-100: #F5F1EA;
  --c-beige-200: #ECE5D9;
  --c-beige-300: #D9CFC0;

  /* Text */
  --c-ink: #1B2436;
  --c-ink-soft: #4A5670;
  --c-ink-muted: #6E7787;

  /* Functional */
  --c-line: #E5E1D8;
  --c-success: #5C8C6B;
  --c-error: #C95A5A;

  /* Typography */
  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Lato', system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.5rem, 6vw + 0.5rem, 5.25rem);
  --fs-h1: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  --fs-h2: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  --fs-lead: clamp(1.05rem, 0.5vw + 0.9rem, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  /* Spacing scale (4-based) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radii — generously rounded for soft / trustworthy feel */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Soft 3D shadows — paper cut-out layered system */
  --sh-paper-1: 0 1px 2px rgba(27,36,54,.04), 0 4px 12px rgba(27,36,54,.06);
  --sh-paper-2: 0 2px 4px rgba(27,36,54,.05), 0 10px 28px rgba(27,36,54,.09);
  --sh-paper-3: 0 4px 8px rgba(27,36,54,.06), 0 24px 48px rgba(27,36,54,.12);
  --sh-cta:     0 6px 16px rgba(35,49,74,.22), 0 2px 4px rgba(35,49,74,.12);
  --sh-cta-hover: 0 10px 24px rgba(35,49,74,.28), 0 3px 6px rgba(35,49,74,.14);
  --sh-inset:   inset 0 1px 2px rgba(255,255,255,.6), inset 0 -1px 2px rgba(27,36,54,.04);

  /* Motion */
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --dur-fast: 160ms;
  --dur-base: 280ms;
  --dur-slow: 520ms;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: var(--c-marine); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--c-rose); }

/* Focus visible — accessible everywhere */
:focus-visible {
  outline: 2px solid var(--c-rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. TYPOGRAPHY ---------- */
.serif, h1, h2, h3, h4, .display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: var(--lh-tight);
  color: var(--c-marine);
  margin: 0;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--f-body); letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-marine); }

p { margin: 0 0 1rem; }
.lead { font-size: var(--fs-lead); line-height: var(--lh-relaxed); color: var(--c-ink-soft); }
.eyebrow {
  font-family: var(--f-body); font-size: var(--fs-micro);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--c-rose); font-weight: 700; margin-bottom: var(--s-4);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.eyebrow::before {
  content:""; width: 24px; height: 1.5px; background: var(--c-rose);
  display: inline-block;
}
.hero-title {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--c-marine);
}
.hero-title em {
  font-style: italic;
  color: var(--c-rose);
  font-weight: 300;
}

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}
.container-narrow { max-width: var(--container-narrow); }
.section { padding: var(--s-9) 0; position: relative; }
@media (max-width: 768px) { .section { padding: var(--s-8) 0; } }
.section--dark { background: var(--c-marine); color: var(--c-beige-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--dark .lead { color: var(--c-sky-300); }
.section--beige { background: var(--c-white); }
.section--beige-strong { background: var(--c-rose-50); }
.section--rose { background: var(--c-rose-100); }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 5. BUTTONS — solid, conventional, trust-building ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-body); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  text-decoration: none; cursor: pointer; user-select: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-marine);
  color: var(--c-white);
  box-shadow: var(--sh-cta);
}
.btn--primary:hover {
  background: var(--c-marine-700);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--sh-cta-hover);
}
.btn--accent {
  background: var(--c-rose);
  color: var(--c-white);
  box-shadow: 0 6px 16px rgba(201,74,82,.35), 0 2px 4px rgba(201,74,82,.20);
}
.btn--accent:hover {
  background: #B03A42;
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,74,82,.42), 0 3px 6px rgba(201,74,82,.24);
}
.btn--ghost {
  background: transparent;
  color: var(--c-marine);
  border: 1.5px solid var(--c-marine);
}
.btn--ghost:hover {
  background: var(--c-marine);
  color: var(--c-white);
}
.btn--on-dark.btn--ghost {
  color: var(--c-beige-100);
  border-color: var(--c-sky);
}
.btn--on-dark.btn--ghost:hover {
  background: var(--c-beige-100); color: var(--c-marine);
}
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- 6. CARDS — paper cut-out + soft 3D ---------- */
.card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-paper-2);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-paper-3);
}
.card--flat {
  box-shadow: var(--sh-paper-1);
  border: 1px solid var(--c-line);
}
.card--accent {
  background: var(--c-marine);
  color: var(--c-beige-100);
}
.card--accent h3, .card--accent h4 { color: var(--c-white); }
.card--rose {
  background: var(--c-rose-100);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--c-beige-100);
  color: var(--c-rose);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  box-shadow: var(--sh-inset);
}
.card--accent .card__icon { background: rgba(255,255,255,.08); color: var(--c-rose-300); }
.card__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--s-3);
  color: var(--c-marine);
}
.card--accent .card__title { color: var(--c-white); }
.card__body { color: var(--c-ink-soft); font-size: 0.95rem; }
.card--accent .card__body { color: var(--c-sky-300); }

/* Numbered card — for the 3 plans */
.plan-card { display: flex; flex-direction: column; gap: var(--s-4); padding: var(--s-7); }
.plan-card__num {
  font-family: var(--f-display); font-size: 3rem; color: var(--c-rose);
  line-height: 1; opacity: 0.6;
}
.plan-card__name {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--c-marine);
}
.plan-card--featured {
  background: var(--c-marine);
  color: var(--c-beige-100);
  transform: scale(1.03);
}
.plan-card--featured .plan-card__name { color: var(--c-white); }
.plan-card--featured .plan-card__num { color: var(--c-rose-300); opacity: 1; }
.plan-card--featured ul { color: var(--c-sky-300); }
.plan-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--c-rose); color: var(--c-white);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: var(--fs-micro); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(201,74,82,.35);
}
.plan-card ul {
  list-style: none; padding: 0; margin: var(--s-2) 0 var(--s-5); color: var(--c-ink-soft);
  font-size: 0.95rem;
}
.plan-card ul li {
  padding: 8px 0 8px 24px; position: relative;
  border-top: 1px solid var(--c-line);
}
.plan-card--featured ul li { border-top-color: rgba(255,255,255,.08); }
.plan-card ul li:first-child { border-top: 0; }
.plan-card ul li::before {
  content: "+"; position: absolute; left: 0; top: 8px;
  color: var(--c-rose); font-weight: 700; font-size: 1rem;
}
.plan-card--featured ul li::before { color: var(--c-rose-300); }

/* ---------- 7. NAVIGATION ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 2px 8px rgba(27,36,54,.07);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--s-5);
}
.nav__brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-marine);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
}
.nav__brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-rose);
  display: inline-block;
}
.nav__menu {
  display: flex; gap: var(--s-6); list-style: none; padding: 0; margin: 0;
}
.nav__menu a {
  color: var(--c-ink); font-size: 0.92rem; font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--c-rose);
  transition: width var(--dur-base) var(--ease-out);
}
.nav__menu a:hover::after, .nav__menu a.is-active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: var(--s-4); }

.lang-switch {
  display: inline-flex; gap: 2px;
  background: var(--c-beige-100);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang-switch button {
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  color: var(--c-ink-muted);
  letter-spacing: 0.05em;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.lang-switch button.is-active {
  background: var(--c-marine);
  color: var(--c-white);
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--c-beige-100);
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--c-marine); }

@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-white);
    padding: var(--s-5);
    box-shadow: var(--sh-paper-2);
    gap: var(--s-4);
    border-bottom-left-radius: var(--r-lg);
    border-bottom-right-radius: var(--r-lg);
  }
}

/* ---------- 8. HERO — paper cut-out background ---------- */
.hero {
  position: relative;
  padding: clamp(var(--s-8), 8vw, var(--s-10)) 0 clamp(var(--s-9), 12vw, var(--s-10));
  overflow: hidden;
  background: var(--c-white);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.hero__content { max-width: 640px; }
.hero__lead { margin-top: var(--s-5); margin-bottom: var(--s-6); max-width: 540px; }
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}
.hero__visual svg { width: 100%; height: 100%; }

/* Paper cut-out blobs — decorative, behind text */
.blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(27,36,54,.08));
}
.blob--1 { top: -80px; right: -120px; width: 420px; opacity: 0.18; }
.blob--2 { bottom: -100px; left: -80px; width: 320px; opacity: 0.12; }

/* ---------- 9. METRICS / TRUST BAR ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  padding: var(--s-6) var(--s-7);
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-paper-2);
  margin-top: var(--s-8);
}
@media (max-width: 720px) { .trust-bar { grid-template-columns: repeat(2, 1fr); padding: var(--s-5); } }
.trust-item__num {
  font-family: var(--f-display);
  font-size: 2.5rem; font-weight: 400;
  color: var(--c-marine); line-height: 1;
}
.trust-item__num em { color: var(--c-rose); font-style: normal; }
.trust-item__label {
  font-size: var(--fs-small); color: var(--c-ink-muted);
  margin-top: var(--s-2); line-height: 1.4;
}

/* ---------- 10. SECTION HEADER ---------- */
.section-head {
  max-width: var(--container-narrow);
  margin: 0 auto var(--s-8);
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: var(--s-4); }
.section-head p { color: var(--c-ink-soft); font-size: var(--fs-lead); margin: 0 auto; }

/* ---------- 11. PROCESS / 3-STEP ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
}
@media (max-width: 768px) { .process { grid-template-columns: 1fr; } }
.process__step {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-paper-1);
  border: 1px solid var(--c-line);
  position: relative;
}
.process__num {
  position: absolute; top: -18px; left: var(--s-6);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-rose); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 600;
  box-shadow: 0 6px 14px rgba(219,128,132,.4);
}
.process__step h3 {
  font-family: var(--f-display); font-size: 1.4rem; margin: var(--s-4) 0 var(--s-3);
}

/* ---------- 12. TESTIMONIALS ---------- */
.testimonial {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  position: relative;
  box-shadow: var(--sh-paper-2);
  border-left: 4px solid var(--c-rose);
}
.testimonial::before {
  content: "“";
  position: absolute; top: 12px; left: 28px;
  font-family: var(--f-display);
  font-size: 8rem; line-height: 1;
  color: var(--c-rose-100); font-weight: 600;
  z-index: 0;
}
.testimonial__quote {
  position: relative; z-index: 1;
  font-family: var(--f-display);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--c-marine);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--s-5);
}
.testimonial__author { display: flex; align-items: center; gap: var(--s-3); }
.testimonial__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-marine); color: var(--c-rose-300);
  font-family: var(--f-display); font-weight: 600; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--sh-paper-1);
}
.testimonial__name { font-weight: 700; color: var(--c-marine); }
.testimonial__role { font-size: var(--fs-small); color: var(--c-ink-muted); }

/* ---------- 13. FORMS — triagem ---------- */
.form-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-5), 4vw, var(--s-8));
  box-shadow: var(--sh-paper-3);
  max-width: 720px;
  margin: 0 auto;
}
.form-step { display: none; }
.form-step.is-active { display: block; animation: fadeIn .35s var(--ease-out); }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-progress {
  display: flex; gap: 6px; margin-bottom: var(--s-6);
}
.form-progress span {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--c-line);
  transition: background var(--dur-base) var(--ease-out);
}
.form-progress span.is-done { background: var(--c-rose); }
.form-progress span.is-current { background: var(--c-marine); }

.form-step__index {
  font-family: var(--f-body); font-size: var(--fs-micro);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--c-rose); font-weight: 700;
  margin-bottom: var(--s-3);
}
.form-step__q {
  font-family: var(--f-display); font-size: 1.75rem;
  font-weight: 500; color: var(--c-marine); margin-bottom: var(--s-5);
  line-height: 1.2;
}
.form-step__help {
  font-size: var(--fs-small); color: var(--c-ink-muted); margin-bottom: var(--s-4);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-line);
  background: var(--c-beige-50);
  font-family: var(--f-body); font-size: 1rem;
  color: var(--c-ink);
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.form-control:focus {
  outline: 0;
  border-color: var(--c-marine);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(35,49,74,.08);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-label {
  display: block; font-size: var(--fs-small); font-weight: 700;
  color: var(--c-marine); margin-bottom: var(--s-2);
}
.form-row { margin-bottom: var(--s-4); }
.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4);
}
@media (max-width: 540px) { .form-grid-2 { grid-template-columns: 1fr; } }

.checkbox-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line);
  background: var(--c-white);
  cursor: pointer; font-size: 0.92rem;
  transition: all var(--dur-fast);
}
.checkbox-pill input { accent-color: var(--c-rose); }
.checkbox-pill:has(input:checked) {
  background: var(--c-marine); color: var(--c-white); border-color: var(--c-marine);
}
.pill-group { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.form-nav {
  display: flex; justify-content: space-between; gap: var(--s-3);
  margin-top: var(--s-6); padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}

.legal-line {
  font-size: var(--fs-small); color: var(--c-ink-muted);
  margin-top: var(--s-5);
  display: flex; gap: 10px; align-items: flex-start;
}
.legal-line input { margin-top: 4px; accent-color: var(--c-rose); }

/* ---------- 14. FOOTER ---------- */
.footer {
  background: var(--c-marine-700);
  color: var(--c-sky-300);
  padding: var(--s-9) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand {
  font-family: var(--f-display);
  font-size: 2rem; color: var(--c-white);
  margin-bottom: var(--s-4);
  font-weight: 400;
}
.footer__tagline {
  font-family: var(--f-display); font-style: italic;
  font-size: 1.15rem; color: var(--c-sky); margin-bottom: var(--s-5);
  max-width: 380px; line-height: 1.4;
}
.footer h4 {
  color: var(--c-white); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: var(--s-4); font-family: var(--f-body);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: var(--s-3); }
.footer ul a { color: var(--c-sky-300); font-size: 0.92rem; }
.footer ul a:hover { color: var(--c-rose); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; gap: var(--s-4);
  font-size: var(--fs-small); color: var(--c-sky);
  flex-wrap: wrap;
}

/* ---------- 15. BADGES & MISC ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--c-beige-100);
  color: var(--c-marine);
  font-size: var(--fs-micro);
  font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--rose { background: var(--c-rose-100); color: var(--c-white); }
.badge--sky { background: var(--c-sky-100); color: var(--c-marine); }
.badge--marine { background: var(--c-marine); color: var(--c-white); }

.divider {
  width: 60px; height: 3px;
  background: var(--c-rose);
  border-radius: 2px;
  margin: var(--s-4) 0;
}

.price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--f-display);
  font-size: 2.25rem; color: var(--c-marine); font-weight: 500;
}
.price span { font-size: 1rem; font-family: var(--f-body); color: var(--c-ink-muted); font-weight: 400; }
.plan-card--featured .price { color: var(--c-white); }

/* Accordion (FAQ / "Cómo trabajamos") */
.accordion details {
  background: var(--c-white);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  box-shadow: var(--sh-paper-1);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.accordion summary {
  list-style: none; cursor: pointer;
  padding: var(--s-5) var(--s-6);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-display); font-size: 1.2rem; color: var(--c-marine);
  font-weight: 500;
  transition: background var(--dur-fast);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: var(--c-beige-50); }
.accordion summary::after {
  content: "+"; font-size: 1.5rem; color: var(--c-rose);
  transition: transform var(--dur-base) var(--ease-out);
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details > div {
  padding: 0 var(--s-6) var(--s-5);
  color: var(--c-ink-soft); line-height: 1.7;
}

/* Hidden by default — language */
[data-i18n-show] { display: none; }
[data-i18n-show].is-visible { display: inherit; }

/* Utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: var(--s-5); }
.mt-5 { margin-top: var(--s-7); }
.mb-5 { margin-bottom: var(--s-7); }
.flex { display: flex; }
.gap-3 { gap: var(--s-4); }
.items-center { align-items: center; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Print */
@media print { .nav, .footer, .btn { display: none !important; } }
