/* build: brand.css + colors_and_type.css + site.css + modelo.css */
/* ===================================================================
   Well Clinic Odontologia — Brand Tokens
   Brandbook 2026 · v1.0 · Abril 2026
   Pronto para uso em qualquer projeto Web da marca.
   =================================================================== */

:root {
  /* -------------------------------------------------------------
     1. Cores principais
     ------------------------------------------------------------- */
  --wc-teal:           #00B8B0; /* Primária · logo · CTAs       */
  --wc-teal-medium:    #3FB5A0; /* Backgrounds, transições       */
  --wc-green-teal:     #5EA87A; /* Secundária, destaques         */
  --wc-blue-clinical:  #1E90C0; /* Dados, protocolos             */
  --wc-blue-medium:    #3C80B0; /* Subtítulos                    */
  --wc-indigo:         #4E6898; /* Âncora escura, títulos        */
  --wc-white:          #FFFFFF; /* Fundos principais             */

  /* Neutros aprovados (uso secundário) */
  --wc-ivory:          #FAF7F2; /* Card WhatsApp                 */
  --wc-gray:           #5A6776; /* Texto secundário, contato     */

  /* -------------------------------------------------------------
     2. Gradiente oficial
     ------------------------------------------------------------- */
  --wc-gradient:       linear-gradient(135deg, #00B8B0 0%, #4E6898 100%);

  /* -------------------------------------------------------------
     3. Tipografia
     ------------------------------------------------------------- */
  --wc-font:           "Louis George Cafe", Arial, system-ui, sans-serif;
  --wc-fw-light:       300;
  --wc-fw-regular:     400;
  --wc-fw-bold:        700;

  --wc-fs-h1:          22pt;   /* Títulos de seção  */
  --wc-fs-h2:          16pt;   /* Subtítulos        */
  --wc-fs-h3:          13pt;   /* Títulos menores   */
  --wc-fs-body:        10.5pt; /* Texto principal   */
  --wc-fs-caption:     9pt;    /* Legendas, notas   */

  --wc-lh-tight:       1.2;
  --wc-lh-default:     1.3;
  --wc-lh-relaxed:     1.5;

  /* -------------------------------------------------------------
     4. Espaçamento e raios (consistência com o site)
     ------------------------------------------------------------- */
  --wc-radius-sm:      4px;
  --wc-radius-md:      8px;
  --wc-radius-lg:      16px;

  --wc-shadow-soft:    0 4px 20px rgba(78, 104, 152, 0.08);
  --wc-shadow-medium:  0 8px 32px rgba(78, 104, 152, 0.12);
}

/* ===================================================================
   Cores PROIBIDAS — somente referência. Nunca use no Well Clinic.
   #B85C4A  Terracota          → voz da Dra. Jacqueline
   #C4A192  Rose Assinatura    → voz da Dra. Jacqueline
   #0F1F3A  Azul Profundo      → voz da Dra. Jacqueline / Hub
   Fontes proibidas: Lora, Poppins, Georgia, Calibri.
   =================================================================== */

/* -------------------------------------------------------------------
   Carregamento da fonte (sete TTFs locais em /assets/fonts/)
   ------------------------------------------------------------------- */
@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/Louis_George_Cafe_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-bold-italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-light-italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* -------------------------------------------------------------------
   Base
   ------------------------------------------------------------------- */
body {
  font-family: var(--wc-font);
  font-weight: var(--wc-fw-regular);
  font-size:   var(--wc-fs-body);
  line-height: var(--wc-lh-default);
  color:       var(--wc-indigo);
  background:  var(--wc-white);
}

h1 { font-size: var(--wc-fs-h1); font-weight: var(--wc-fw-bold); color: var(--wc-indigo); line-height: var(--wc-lh-tight); }
h2 { font-size: var(--wc-fs-h2); font-weight: var(--wc-fw-bold); color: var(--wc-indigo); }
h3 { font-size: var(--wc-fs-h3); font-weight: var(--wc-fw-bold); color: var(--wc-indigo); }

small, .caption {
  font-size: var(--wc-fs-caption);
  font-weight: var(--wc-fw-light);
  color: var(--wc-gray);
}

a {
  color: var(--wc-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--wc-blue-clinical);
}

/* -------------------------------------------------------------------
   Utility classes (opcionais)
   ------------------------------------------------------------------- */
.wc-bg-gradient   { background: var(--wc-gradient); color: var(--wc-white); }
.wc-bg-teal       { background: var(--wc-teal);    color: var(--wc-white); }
.wc-bg-indigo     { background: var(--wc-indigo);  color: var(--wc-white); }
.wc-bg-ivory      { background: var(--wc-ivory);   color: var(--wc-indigo); }

.wc-text-teal     { color: var(--wc-teal); }
.wc-text-indigo   { color: var(--wc-indigo); }
.wc-text-gray     { color: var(--wc-gray); }

.wc-btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--wc-teal);
  color: var(--wc-white);
  font-family: var(--wc-font);
  font-weight: var(--wc-fw-bold);
  text-decoration: none;
  border: none;
  border-radius: var(--wc-radius-md);
  transition: background 200ms ease;
}

.wc-btn-primary:hover {
  background: var(--wc-blue-clinical);
}

/* ============================================================================
   Well Clinic — Colors & Type
   Source of truth: Brandbook 2026 v1.0 (reference/official-brand-tokens.json).
   This file extends the official tokens with a responsive web scale + semantic
   aliases. Official token values are mirrored verbatim and must not drift.
   ========================================================================== */

/* ---------- Typeface (Louis George Cafe — 300 / 400 / 700) ---------- */

@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-light-italic.ttf") format("truetype");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Louis George Cafe";
  src: url("/fonts/louis-george-cafe-bold-italic.ttf") format("truetype");
  font-weight: 700; font-style: italic; font-display: swap;
}

:root {
  /* ============================================================
     OFFICIAL BRAND TOKENS — copied verbatim from brand.css v1.0
     ============================================================ */

  --wc-teal:           #00B8B0;   /* Primária · logo · CTAs */
  --wc-teal-medium:    #3FB5A0;   /* Backgrounds, transições */
  --wc-green-teal:     #5EA87A;   /* Secundária, destaques */
  --wc-blue-clinical:  #1E90C0;   /* Dados, protocolos */
  --wc-blue-medium:    #3C80B0;   /* Subtítulos */
  --wc-indigo:         #4E6898;   /* Âncora escura, títulos (default text color) */
  --wc-white:          #FFFFFF;   /* Fundos principais */

  --wc-ivory:          #FAF7F2;   /* Card WhatsApp / alt surface */
  --wc-gray:           #5A6776;   /* Texto secundário */

  /* Official gradient — the only sanctioned gradient direction & stops */
  --wc-gradient:       linear-gradient(135deg, #00B8B0 0%, #4E6898 100%);

  /* Print-spec type scale (from brandbook; small, document-oriented) */
  --wc-fs-h1:          22pt;
  --wc-fs-h2:          16pt;
  --wc-fs-h3:          13pt;
  --wc-fs-body:        10.5pt;
  --wc-fs-caption:     9pt;

  --wc-lh-tight:       1.2;
  --wc-lh-default:     1.3;
  --wc-lh-relaxed:     1.5;

  --wc-fw-light:       300;
  --wc-fw-regular:     400;
  --wc-fw-bold:        700;

  --wc-radius-sm:      4px;
  --wc-radius-md:      8px;
  --wc-radius-lg:      16px;

  --wc-shadow-soft:    0 4px 20px rgba(78, 104, 152, 0.08);
  --wc-shadow-medium:  0 8px 32px rgba(78, 104, 152, 0.12);

  /* ============================================================
     FORBIDDEN — for documentation only. Never apply these.
     #B85C4A Terracota · #C4A192 Rose · #0F1F3A Azul Profundo
     (Belong to Dra. Jacqueline's personal voice / Hub brand)
     Forbidden font families: Lora, Poppins, Georgia, Calibri.
     ============================================================ */

  /* ============================================================
     EXTENSIONS — web-only additions, derived (not invented).
     Every shade below is a tint/shade of an official token, used
     to make the brand usable in modern UI without breaking it.
     ============================================================ */

  /* Teal tints (derived from --wc-teal #00B8B0) */
  --wc-teal-50:        #E5F8F7;
  --wc-teal-100:       #C2EFEC;
  --wc-teal-200:       #8AE0DA;
  --wc-teal-300:       #4FCEC5;
  --wc-teal-400:       #1FC0B5;
  --wc-teal-500:       #00B8B0;   /* === --wc-teal */
  --wc-teal-600:       #009994;
  --wc-teal-700:       #007A76;
  --wc-teal-800:       #005B58;
  --wc-teal-900:       #003E3C;

  /* Indigo tints (derived from --wc-indigo #4E6898) */
  --wc-indigo-50:      #EFF2F8;
  --wc-indigo-100:     #D9E0EE;
  --wc-indigo-200:     #B3C1DC;
  --wc-indigo-300:     #8B9DC4;
  --wc-indigo-400:     #6B82AE;
  --wc-indigo-500:     #4E6898;   /* === --wc-indigo */
  --wc-indigo-600:     #3E537B;
  --wc-indigo-700:     #2F405E;
  --wc-indigo-800:     #1F2D42;
  --wc-indigo-900:     #131C2A;

  /* Clinical blue tints (derived from --wc-blue-clinical #1E90C0) */
  --wc-blue-50:        #E6F3FA;
  --wc-blue-100:       #C2E1F2;
  --wc-blue-200:       #8DC8E6;
  --wc-blue-300:       #57AED5;
  --wc-blue-400:       #339FCB;
  --wc-blue-500:       #1E90C0;   /* === --wc-blue-clinical */
  --wc-blue-600:       #18789F;

  /* Cool neutrals — derived from indigo, used for hairlines & inset bg */
  --wc-paper:          #F7F8FB;   /* default page bg */
  --wc-bone:           #ECEFF5;   /* subtle inset */
  --wc-border:         #D6DCE7;   /* hairline */
  --wc-border-strong:  #B6C0D1;

  /* Semantic, calibrated to brand palette */
  --wc-success:        var(--wc-green-teal);   /* #5EA87A */
  --wc-warning:        #C99B3B;                /* warm sand, not in palette but harmonious */
  --wc-danger:         #B85C4A;                /* terracota — RESERVED. Use ONLY for destructive states in UI (errors / delete confirmations). Never as brand surface color. */
  --wc-info:           var(--wc-blue-clinical);

  /* ---------- Semantic foreground / background aliases ---------- */

  --fg-1:              var(--wc-indigo);          /* default body text — indigo per brand */
  --fg-2:              var(--wc-gray);            /* secondary text */
  --fg-3:              #7A8593;                   /* tertiary / captions */
  --fg-mute:           #99A2B0;                   /* placeholder / disabled */
  --fg-on-brand:       var(--wc-white);
  --fg-link:           var(--wc-teal);            /* per brand: anchors are teal */
  --fg-link-hover:     var(--wc-blue-clinical);   /* per brand: anchors hover to clinical blue */

  --bg-1:              var(--wc-white);           /* default page */
  --bg-2:              var(--wc-white);           /* card surface */
  --bg-3:              var(--wc-bone);            /* inset / alt */
  --bg-warm:           var(--wc-ivory);           /* warm alternate band */
  --bg-ink:            var(--wc-indigo);          /* dark editorial sections */

  --border-1:          var(--wc-border);
  --border-2:          var(--wc-border-strong);
  --border-focus:      var(--wc-teal);

  /* ---------- Web type scale (responsive, derived) ----------
     Brandbook sizes are document/print (pt). Web designs use the
     px scale below; the pt scale stays available for print exports
     and for keeping social cards/PDFs on-brand.
  */
  --font-sans:    "Louis George Cafe", Arial, system-ui, sans-serif;
  --font-display: var(--font-sans);
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-38: 2.375rem;
  --fs-48: 3rem;
  --fs-64: 4rem;
  --fs-88: 5.5rem;
  --fs-120: 7.5rem;

  --ls-tight: -0.02em;
  --ls-snug:  -0.01em;
  --ls-base:  0;
  --ls-wide:  0.04em;
  --ls-loud:  0.18em;       /* the "ODONTOLOGIA" lockup tracking */

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

  /* Extended radii (small/medium/large match official; xl + pill added for web UI) */
  --radius-xs: 4px;          /* === --wc-radius-sm */
  --radius-sm: 8px;          /* === --wc-radius-md */
  --radius-md: 16px;         /* === --wc-radius-lg */
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Extended elevation */
  --shadow-1: 0 1px 2px rgba(78, 104, 152, 0.05);
  --shadow-2: var(--wc-shadow-soft);
  --shadow-3: var(--wc-shadow-medium);
  --shadow-4: 0 24px 60px rgba(78, 104, 152, 0.16);
  --shadow-brand: 0 18px 40px -12px rgba(0, 184, 176, 0.30);

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 480ms;
}

/* ============================================================
   Base bindings (re-exported from official brand.css)
   ============================================================ */

body {
  font-family: var(--font-sans);
  font-weight: var(--wc-fw-regular);
  line-height: var(--wc-lh-default);
  color:       var(--wc-indigo);
  background:  var(--wc-white);
}

/* ============================================================
   Web-friendly semantic type classes (preferred for digital UI)
   ============================================================ */

.wc-display, .wc-h1, .wc-h2, .wc-h3, .wc-h4, .wc-h5,
.wc-body, .wc-body-lg, .wc-caption, .wc-eyebrow, .wc-lead, .wc-quote {
  font-family: var(--font-sans);
  color: var(--wc-indigo);
  margin: 0;
  text-wrap: pretty;
}

.wc-display {
  font-size: clamp(3.5rem, 7vw, var(--fs-120));
  font-weight: 300;
  line-height: var(--wc-lh-tight);
  letter-spacing: var(--ls-tight);
}

.wc-h1 {
  font-size: clamp(2.5rem, 5vw, var(--fs-64));
  font-weight: 300;
  line-height: var(--wc-lh-tight);
  letter-spacing: var(--ls-tight);
}

.wc-h2 {
  font-size: clamp(2rem, 4vw, var(--fs-48));
  font-weight: 400;
  line-height: var(--wc-lh-tight);
  letter-spacing: var(--ls-snug);
}

.wc-h3 {
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: var(--wc-lh-tight);
}

.wc-h4 {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: var(--wc-lh-default);
}

.wc-h5 {
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: var(--wc-lh-default);
}

.wc-lead {
  font-size: var(--fs-20);
  font-weight: 300;
  line-height: var(--wc-lh-relaxed);
  color: var(--wc-gray);
}

.wc-body-lg {
  font-size: var(--fs-18);
  font-weight: 400;
  line-height: var(--wc-lh-relaxed);
  color: var(--wc-gray);
}

.wc-body {
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: var(--wc-lh-relaxed);
  color: var(--wc-gray);
}

.wc-caption {
  font-size: var(--fs-14);
  font-weight: 300;
  line-height: var(--wc-lh-default);
  color: var(--wc-gray);
}

.wc-eyebrow {
  font-size: var(--fs-12);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--wc-teal);
}

.wc-quote {
  font-size: var(--fs-30);
  font-weight: 300;
  font-style: italic;
  line-height: var(--wc-lh-tight);
  color: var(--wc-indigo);
}

/* Print-spec sizes — for branded PDFs / social documents only. */
.wc-print-h1     { font-size: var(--wc-fs-h1);      font-weight: 700; color: var(--wc-indigo); line-height: var(--wc-lh-tight); }
.wc-print-h2     { font-size: var(--wc-fs-h2);      font-weight: 700; color: var(--wc-indigo); }
.wc-print-h3     { font-size: var(--wc-fs-h3);      font-weight: 700; color: var(--wc-indigo); }
.wc-print-body   { font-size: var(--wc-fs-body);    font-weight: 400; color: var(--wc-gray); }
.wc-print-caption{ font-size: var(--wc-fs-caption); font-weight: 300; color: var(--wc-gray); }

/* ============================================================
   Utility classes (mirrors official brand.css + a few additions)
   ============================================================ */

.wc-bg-gradient   { background: var(--wc-gradient); color: var(--wc-white); }
.wc-bg-teal       { background: var(--wc-teal);    color: var(--wc-white); }
.wc-bg-indigo     { background: var(--wc-indigo);  color: var(--wc-white); }
.wc-bg-ivory      { background: var(--wc-ivory);   color: var(--wc-indigo); }

.wc-text-teal     { color: var(--wc-teal); }
.wc-text-indigo   { color: var(--wc-indigo); }
.wc-text-gray     { color: var(--wc-gray); }

.wc-text-gradient {
  background: var(--wc-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* Buttons — primary mirrors official .wc-btn-primary verbatim */
.wc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--wc-teal);
  color: var(--wc-white);
  font-family: var(--font-sans);
  font-weight: var(--wc-fw-bold);
  font-size: var(--fs-16);
  text-decoration: none;
  border: none;
  border-radius: var(--wc-radius-md);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.wc-btn-primary:hover { background: var(--wc-blue-clinical); }
.wc-btn-primary:active { transform: scale(0.99); }
.wc-btn-primary:focus-visible { outline: 2px solid var(--wc-teal); outline-offset: 2px; }

.wc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 23px;
  background: transparent;
  color: var(--wc-indigo);
  font-family: var(--font-sans);
  font-weight: var(--wc-fw-bold);
  font-size: var(--fs-16);
  text-decoration: none;
  border: 1px solid var(--wc-indigo);
  border-radius: var(--wc-radius-md);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.wc-btn-secondary:hover { background: var(--wc-indigo); color: var(--wc-white); }
.wc-btn-secondary:active { transform: scale(0.99); }

.wc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  background: transparent;
  color: var(--wc-teal);
  font-family: var(--font-sans);
  font-weight: var(--wc-fw-bold);
  font-size: var(--fs-16);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.wc-btn-ghost:hover { color: var(--wc-blue-clinical); }

/* ============================================================
   Well Clinic — site styles
   Imports official brand tokens + adds page-level patterns.
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  line-height: var(--wc-lh-relaxed);
  color: var(--wc-indigo);
  background: var(--wc-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--wc-teal); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--wc-indigo); color: #fff;
  padding: 12px 18px; z-index: 100; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   Container
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 880px; }
.container--wide   { max-width: 1440px; }

/* ============================================================
   Header — sticky, white, condenses on scroll
   ============================================================ */
.site-topbar {
  background: var(--wc-indigo);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 9px 0;
}
.site-topbar__row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.site-topbar a { color: rgba(255,255,255,.84); transition: color var(--dur-fast) var(--ease-out); }
.site-topbar a:hover { color: var(--wc-teal-200); }
.site-topbar__location { display: inline-flex; align-items: center; gap: 8px; }
.site-topbar__location::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--wc-teal); box-shadow: 0 0 0 3px rgba(0,184,176,.25);
}
.site-topbar__links { display: flex; gap: 22px; align-items: center; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--wc-border);
  position: sticky;
  top: 0;
  z-index: 40;
  transition: padding var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--wc-border), 0 14px 30px -22px rgba(78,104,152,.25); }
.site-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
  transition: padding var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled .site-header__row { padding: 12px 0; }
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { height: 38px; width: auto; transition: height var(--dur-base) var(--ease-out); }
.site-header.is-scrolled .site-header__logo img { height: 32px; }

.site-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--wc-indigo);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  letter-spacing: 0.01em;
}
.site-nav__link:hover, .site-nav__item.is-active > .site-nav__link {
  color: var(--wc-teal);
  background: var(--wc-teal-50);
}
.site-nav__link[aria-haspopup]::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .55;
}
.site-nav__submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--wc-border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--wc-shadow-medium);
  display: none;
  z-index: 10;
}
.site-nav__item:hover .site-nav__submenu,
.site-nav__item:focus-within .site-nav__submenu { display: block; }
.site-nav__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--wc-indigo);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.site-nav__submenu a:hover { background: var(--wc-teal-50); color: var(--wc-teal); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--wc-gray);
}
.lang-switch a { padding: 4px 6px; border-radius: 4px; transition: color var(--dur-fast) var(--ease-out); }
.lang-switch a:hover { color: var(--wc-teal); }
.lang-switch a[aria-current="true"] { color: var(--wc-indigo); }
.lang-switch__sep { opacity: .4; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.985); }
.btn--primary { background: var(--wc-teal); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--wc-blue-clinical); }
.btn--ghost { background: transparent; color: var(--wc-indigo); border-color: var(--wc-border-strong); }
.btn--ghost:hover { background: var(--wc-indigo); color: #fff; border-color: var(--wc-indigo); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 15px; border-radius: 12px; }
.btn--block { width: 100%; }
.btn__arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--wc-border);
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--wc-indigo); transition: transform var(--dur-base) var(--ease-out); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--wc-indigo);
  color: rgba(255,255,255,.78);
  padding: clamp(48px, 7vw, 96px) 0 24px;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.site-footer__logo { height: 48px; width: auto; margin-bottom: 22px; }
.site-footer__tag { margin: 0 0 24px; max-width: 38ch; color: rgba(255,255,255,.82); }
.site-footer__socials { display: flex; gap: 10px; }
.site-footer__socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.site-footer__socials a:hover { background: var(--wc-teal); color: #fff; border-color: var(--wc-teal); }

.site-footer__col h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wc-teal-200);
  margin: 0 0 18px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer__col a, .site-footer__col p {
  color: rgba(255,255,255,.78);
  transition: color var(--dur-fast) var(--ease-out);
  margin: 0;
}
.site-footer__col a:hover { color: var(--wc-teal-200); }
.site-footer__contact { display: grid; gap: 4px; margin-bottom: 14px; }
.site-footer__credentials { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,.55); display: grid; gap: 4px; }

.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.03em;
}

/* ============================================================
   WhatsApp float
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  background: #fff;
  color: var(--wc-indigo);
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 20px 40px -12px rgba(78,104,152,.35), 0 0 0 1px var(--wc-border);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 26px 50px -14px rgba(78,104,152,.45), 0 0 0 1px var(--wc-teal); }
.wa-float__icon {
  width: 38px; height: 38px; border-radius: 999px;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.wa-float small {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  color: var(--wc-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ============================================================
   Section common
   ============================================================ */
.section { padding: clamp(64px, 8vw, 128px) 0; position: relative; }
.section--sm { padding: clamp(48px, 6vw, 88px) 0; }
.section--ivory { background: var(--wc-ivory); }
.section--paper { background: var(--wc-paper); }
.section--bone  { background: var(--wc-bone); }
.section--dark  { background: var(--wc-indigo); color: #fff; }
.section--dark .eyebrow { color: var(--wc-teal-200); }
.section--dark .display, .section--dark .h1, .section--dark .h2, .section--dark .h3, .section--dark .h4 { color: #fff; }
.section--dark .lead, .section--dark .body { color: rgba(255,255,255,.8); }
.section--dark .meta { color: rgba(255,255,255,.6); }

.section__head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wc-teal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--no-rule::before { display: none; }
.eyebrow--center { justify-content: center; }

.display {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
  color: var(--wc-indigo);
  text-wrap: balance;
}
.h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 22px;
  color: var(--wc-indigo);
  text-wrap: balance;
}
.h2 {
  font-size: clamp(1.875rem, 3.4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--wc-indigo);
  text-wrap: balance;
}
.h3 {
  font-size: clamp(1.4rem, 2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--wc-indigo);
}
.h4 {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--wc-indigo);
}
.display em, .h1 em, .h2 em, .h3 em { font-style: italic; font-weight: 300; }
.display .accent, .h1 .accent, .h2 .accent {
  background: var(--wc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--wc-gray);
  margin: 0 0 24px;
  max-width: 62ch;
  text-wrap: pretty;
}
.body { font-size: 16px; line-height: 1.65; color: var(--wc-gray); margin: 0 0 16px; max-width: 62ch; text-wrap: pretty; }
.meta { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wc-gray); }

.divider { height: 1px; background: var(--wc-border); border: 0; margin: 0; }

/* ============================================================
   Hero — editorial split (option 0 from form)
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  background: var(--wc-white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero__copy { max-width: 56ch; }
.hero__title { font-size: clamp(2.5rem, 5.4vw, 5.25rem); font-weight: 300; line-height: 1; letter-spacing: -0.03em; margin: 0 0 24px; color: var(--wc-indigo); text-wrap: balance; }
.hero__title em { font-style: italic; font-weight: 300; color: var(--wc-teal); }
.hero__lead { font-size: clamp(1.0625rem, 1.3vw, 1.25rem); font-weight: 300; line-height: 1.55; color: var(--wc-gray); margin: 0 0 30px; max-width: 52ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__media {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--wc-shadow-medium);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip {
  position: absolute;
  left: 20px; top: 20px;
  background: rgba(255,255,255,.94);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wc-indigo);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__chip::before { content: ""; width: 6px; height: 6px; background: var(--wc-teal); border-radius: 999px; }

/* Hero dark variant — used on interior pages */
.hero--dark {
  background: var(--wc-indigo);
  color: #fff;
}
.hero--dark .eyebrow { color: var(--wc-teal-200); }
.hero--dark .hero__title { color: #fff; }
.hero--dark .hero__lead { color: rgba(255,255,255,.82); }

.hero--centered { text-align: center; }
.hero--centered .hero__grid { display: block; max-width: 920px; margin: 0 auto; }
.hero--centered .hero__lead { margin-left: auto; margin-right: auto; }
.hero--centered .hero__actions { justify-content: center; }

.hero--full {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: clamp(80px, 12vw, 160px) 0 clamp(56px, 7vw, 96px);
  color: #fff;
  position: relative;
  isolation: isolate;
}
.hero--full .hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero--full .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero--full::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,30,55,0) 30%, rgba(15,30,55,.72) 100%),
    linear-gradient(95deg, rgba(15,30,55,.45) 0%, rgba(0,184,176,.18) 75%);
}
.hero--full .hero__title, .hero--full .eyebrow { color: #fff; }
.hero--full .eyebrow { color: rgba(255,255,255,.94); }
.hero--full .hero__lead { color: rgba(255,255,255,.86); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  border-top: 1px solid var(--wc-border);
  border-bottom: 1px solid var(--wc-border);
  background: var(--wc-paper);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(28px, 4vw, 48px) 0;
  gap: clamp(20px, 3vw, 40px);
}
.trust__item { padding-inline: clamp(8px, 2vw, 20px); border-left: 1px solid var(--wc-border); }
.trust__item:first-child { border-left: 0; }
.trust__num {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--wc-indigo);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.trust__num em { font-style: normal; font-size: 0.55em; color: var(--wc-teal); font-weight: 700; }
.trust__label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wc-gray);
}

/* ============================================================
   Cards (treatments, posts, team)
   ============================================================ */
.card-grid { display: grid; gap: 20px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: #fff;
  border: 1px solid var(--wc-border);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column;
  position: relative;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--wc-shadow-medium); border-color: var(--wc-teal-200); }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--wc-teal-50);
  color: var(--wc-teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--wc-indigo); margin: 0 0 10px; }
.feature-card p { font-size: 15px; line-height: 1.6; color: var(--wc-gray); margin: 0; flex: 1; }
.feature-card.is-placeholder { background: var(--wc-paper); border-style: dashed; }
.feature-card.is-placeholder h3, .feature-card.is-placeholder p { color: var(--wc-gray); }

.treatment-card {
  background: #fff;
  border: 1px solid var(--wc-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  position: relative;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--wc-shadow-medium); }
.treatment-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--wc-bone); }
.treatment-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.treatment-card:hover .treatment-card__media img { transform: scale(1.06); }
.treatment-card__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.treatment-card__tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wc-teal); }
.treatment-card h3 { margin: 0; font-size: 1.375rem; font-weight: 700; color: var(--wc-indigo); line-height: 1.2; }
.treatment-card p { margin: 0; font-size: 14.5px; color: var(--wc-gray); line-height: 1.55; flex: 1; }
.treatment-card__link {
  margin-top: 8px;
  font-weight: 700; font-size: 14px;
  color: var(--wc-teal);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color var(--dur-fast) var(--ease-out);
}
.treatment-card__link:hover { color: var(--wc-blue-clinical); }
.treatment-card__link::after { content: "→"; transition: transform var(--dur-base) var(--ease-out); }
.treatment-card:hover .treatment-card__link::after { transform: translateX(3px); }

.post-card {
  background: #fff;
  border: 1px solid var(--wc-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--wc-shadow-medium); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--wc-teal-50); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--wc-indigo); line-height: 1.25; margin: 4px 0 6px; }
.post-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--wc-gray); }
.post-card.is-placeholder { background: var(--wc-teal-50); border-style: dashed; border-color: var(--wc-teal-200); }
.post-card.is-placeholder .post-card__media { background: var(--wc-teal-100); display: flex; align-items: center; justify-content: center; }

/* ============================================================
   CTA panel (gradient)
   ============================================================ */
.cta-panel {
  background: var(--wc-gradient);
  color: #fff;
  border-radius: 24px;
  padding: clamp(36px, 5vw, 72px);
  box-shadow: 0 28px 70px -22px rgba(78,104,152,.45);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.cta-panel--single { grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; text-align: center; }
.cta-panel__head h2 { color: #fff; font-size: clamp(1.875rem, 3.4vw, 3rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 18px; }
.cta-panel__head h2 em { font-style: italic; font-weight: 300; }
.cta-panel__head p { color: rgba(255,255,255,.92); font-size: 17px; font-weight: 300; line-height: 1.55; margin: 0 0 24px; }
.cta-panel__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cta-panel__pill { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: #fff; }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-panel .btn--primary { background: #fff; color: var(--wc-indigo); box-shadow: none; }
.cta-panel .btn--primary:hover { background: var(--wc-ivory); color: var(--wc-indigo); }
.cta-panel .btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.55); }

.cta-panel__steps { display: grid; gap: 12px; }
.cta-panel__step {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.cta-panel__step b { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 4px; font-weight: 700; }
.cta-panel__step span { font-size: 15px; font-weight: 400; line-height: 1.5; color: #fff; }
.cta-panel__num { font-size: 22px; font-weight: 300; color: #fff; opacity: .8; }

/* ============================================================
   Numbered list (framework rows)
   ============================================================ */
.numbered-list { display: grid; gap: 0; }
.numbered-list__row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--wc-border);
  align-items: start;
}
.numbered-list__row:last-child { border-bottom: 1px solid var(--wc-border); }
.numbered-list__num { font-size: 13px; font-weight: 700; color: var(--wc-teal); letter-spacing: 0.06em; padding-top: 4px; }
.numbered-list__title { margin: 0 0 6px; font-size: 18px; font-weight: 700; color: var(--wc-indigo); }
.numbered-list__desc { margin: 0; font-size: 14.5px; color: var(--wc-gray); line-height: 1.6; max-width: 60ch; }

/* ============================================================
   Two-col image / copy
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split__copy { order: 2; }
.split__media {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--wc-shadow-medium);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--landscape { aspect-ratio: 5 / 4; }
.split__chip {
  position: absolute; left: 20px; top: 20px;
  background: rgba(255,255,255,.94);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wc-indigo);
}

/* ============================================================
   Quote / pull
   ============================================================ */
.pullquote {
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--wc-indigo);
  border-left: 2px solid var(--wc-teal);
  padding-left: 28px;
  margin: 24px 0 0;
  max-width: 28ch;
}
.pullquote__attr {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wc-gray);
  font-style: normal;
  display: block;
}

/* ============================================================
   Forms
   ============================================================ */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; color: var(--wc-indigo); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 14px 14px;
  border: 1px solid var(--wc-border);
  border-radius: 10px;
  background: #fff;
  color: var(--wc-indigo);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--wc-teal);
  box-shadow: 0 0 0 4px rgba(0,184,176,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card {
  background: #fff;
  border: 1px solid var(--wc-border);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--wc-shadow-soft);
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wc-gray);
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--wc-gray); transition: color var(--dur-fast) var(--ease-out); }
.breadcrumbs a:hover { color: var(--wc-teal); }
.breadcrumbs__sep { color: var(--wc-border-strong); }
.hero--dark .breadcrumbs, .hero--full .breadcrumbs { color: rgba(255,255,255,.72); }
.hero--dark .breadcrumbs a, .hero--full .breadcrumbs a { color: rgba(255,255,255,.72); }
.hero--dark .breadcrumbs a:hover, .hero--full .breadcrumbs a:hover { color: #fff; }
.hero--dark .breadcrumbs__sep, .hero--full .breadcrumbs__sep { color: rgba(255,255,255,.4); }

/* ============================================================
   Logo strip / partners
   ============================================================ */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--wc-border);
  border-bottom: 1px solid var(--wc-border);
}
.logo-strip img {
  max-height: 44px; width: auto; margin: 0 auto;
  opacity: .58; filter: grayscale(1);
  transition: opacity var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.logo-strip img:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   Page intro band (used as alt to hero on interior pages)
   ============================================================ */
.page-intro {
  padding: clamp(96px, 11vw, 160px) 0 clamp(48px, 6vw, 80px);
  background: var(--wc-paper);
  border-bottom: 1px solid var(--wc-border);
}
.page-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.page-intro__lead { margin-bottom: 0; }

/* ============================================================
   Animations (reveal on scroll)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(14px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__row { grid-template-columns: auto 1fr auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 11; order: -1; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__copy { order: 0; }
  .cta-panel { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: 0; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .page-intro__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header__actions .btn:not(.btn--primary) { display: none; }
  .lang-switch { display: none; }
  .site-topbar { display: none; }
  .card-grid--3, .card-grid--4, .card-grid--2 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .display, .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .wa-float { right: 14px; bottom: 14px; }
  .wa-float span:not(.wa-float__icon) { display: none; }
  .wa-float { padding: 8px; border-radius: 999px; }
}

/* ============ AEO blocks: TL;DR + FAQ ============ */
.tldr {
  max-width: 860px; margin: 0 auto;
  background: var(--wc-white, #fff);
  border: 1px solid var(--wc-border, #D6DCE7);
  border-left: 3px solid var(--wc-teal, #00B8B0);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: var(--wc-shadow-soft, 0 8px 28px rgba(78,104,152,.10));
}
.tldr__label {
  font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  font-size: 12px; color: var(--wc-teal, #00B8B0); margin: 0 0 12px;
}
.tldr__answer {
  font-family: var(--font-display, inherit); font-weight: 400;
  font-size: 19px; line-height: 1.55; color: var(--wc-indigo, #4E6898);
  margin: 0 0 18px; letter-spacing: -0.005em;
}
.tldr__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.tldr__facts li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.5; color: var(--wc-gray, #5A6776);
}
.tldr__facts li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 2px; background: var(--wc-teal, #00B8B0);
}

.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--wc-white, #fff);
  border: 1px solid var(--wc-border, #D6DCE7);
  border-radius: 12px;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display, inherit); font-weight: 700;
  font-size: 16px; color: var(--wc-indigo, #4E6898); line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: 0 0 auto;
  font-size: 20px; font-weight: 400; color: var(--wc-teal, #00B8B0);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--wc-blue-clinical, #1E90C0); }
.faq__body { padding: 0 24px 22px; }
.faq__body p { margin: 0 0 12px; font-size: 15.5px; line-height: 1.65; color: var(--wc-gray, #5A6776); }
.faq__body p:last-child { margin-bottom: 0; }
.faq__byline {
  max-width: 860px; margin: 28px auto 0; text-align: center;
  font-size: 13px; color: var(--wc-gray, #5A6776); letter-spacing: .02em;
}
.article-meta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--wc-gray, #5A6776);
  margin: 10px 0 0; letter-spacing: .02em;
}

/* SITE NOVO — camada de componentes das páginas-modelo (F2)
   Herda tudo de ../site/site.css (tokens + padrões da marca). */
/* Resposta direta (answer-first): o primeiro bloco de conteúdo da página */
.answer-lead {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--wc-indigo);
  max-width: 720px;
  margin: 18px 0 0;
}
.answer-lead strong { font-weight: 700; }

/* Caixa de autoridade compacta (strip do hero) */
.authority--compact {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px;
  margin-top: 30px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--wc-gray);
}
.authority--compact i { width: 4px; height: 4px; border-radius: 999px; background: var(--wc-teal); opacity: .6; }

/* Caixa de autoridade expandida */
.authority-card {
  background: var(--wc-indigo);
  color: #fff;
  border-radius: 24px;
  padding: 48px 52px;
}
.authority-card__head .eyebrow { color: var(--wc-teal); }
.authority-card__head .h2 { color: #fff; margin-bottom: 28px; }
.authority-card__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px 32px; margin-bottom: 32px;
}
.authority-card__grid strong {
  display: block; font-family: var(--font-display); font-size: 18px;
  font-weight: 700; margin-bottom: 4px; color: #fff;
}
.authority-card__grid span { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.75); }
.authority-card .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.authority-card .btn--ghost:hover { border-color: #fff; }
@media (max-width: 720px) { .authority-card { padding: 32px 24px; } }

/* Passos (como funciona na Well) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.step {
  background: var(--wc-white); border: 1px solid var(--wc-border);
  border-radius: 16px; padding: 26px 24px; position: relative;
}
.step__num {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--wc-teal); letter-spacing: .12em; margin-bottom: 10px; display: block;
}
.step h3 { margin: 0 0 8px; font-size: 17px; color: var(--wc-indigo); font-family: var(--font-display); font-weight: 700; line-height: 1.3; }
.step p { margin: 0; font-size: 14px; color: var(--wc-gray); line-height: 1.55; }

/* Comparação (lente × faceta) */
.compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 880px; margin: 0 auto; }
.compare__card { background: var(--wc-white); border: 1px solid var(--wc-border); border-radius: 16px; padding: 30px; }
.compare__card--accent { border-top: 3px solid var(--wc-teal); }
.compare__card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 20px; color: var(--wc-indigo); font-weight: 700; }
.compare__card ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.compare__card li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--wc-gray); line-height: 1.5; }
.compare__card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 2px; background: var(--wc-teal); }

/* Bloco de preço honesto */
.price-block {
  max-width: 860px; margin: 0 auto;
  background: var(--wc-white); border: 1px solid var(--wc-border);
  border-radius: 20px; padding: 40px 44px;
  box-shadow: var(--wc-shadow-soft);
}
.price-block h2 { margin-top: 0; }
.price-block__factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px 24px; margin: 22px 0; }
.price-block__factors span { font-size: 14px; color: var(--wc-gray); padding-left: 20px; position: relative; line-height: 1.5; }
.price-block__factors span::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 2px; background: var(--wc-teal); }
.price-block__note { font-size: 13.5px; color: var(--wc-gray); border-top: 1px solid var(--wc-border); padding-top: 18px; margin-top: 22px; }
@media (max-width: 720px) { .price-block { padding: 28px 22px; } }

/* Slot de vídeo (VideoObject entra quando o vídeo existir) */
.video-slot {
  max-width: 860px; margin: 0 auto; aspect-ratio: 16/9;
  border-radius: 20px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--wc-indigo) 0%, #2a3a5c 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.video-slot__inner { color: rgba(255,255,255,.85); padding: 24px; }
.video-slot__play {
  width: 64px; height: 64px; border-radius: 999px; margin: 0 auto 14px;
  background: var(--wc-teal); display: flex; align-items: center; justify-content: center;
}
.video-slot__play::after { content: ""; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.video-slot__inner small { display: block; margin-top: 6px; font-size: 12px; opacity: .7; }

/* Checklist (quando procurar) */
.check-list { max-width: 720px; margin: 0 auto; display: grid; gap: 10px; }
.check-list li {
  list-style: none; background: var(--wc-white); border: 1px solid var(--wc-border);
  border-radius: 12px; padding: 14px 18px 14px 46px; position: relative;
  font-size: 15px; color: var(--wc-indigo); line-height: 1.5;
}
.check-list li::before {
  content: ""; position: absolute; left: 16px; top: 17px; width: 16px; height: 8px;
  border-left: 2.5px solid var(--wc-teal); border-bottom: 2.5px solid var(--wc-teal);
  transform: rotate(-45deg);
}

/* Descritor da entidade no header (o do PNG fica ilegível em 38px)
   [VALIDAR KB4: adaptacao web do lockup, nao redesenho] */
.site-header__logo { display: flex; align-items: center; gap: 10px; }
.logo-desc {
  font-weight: 700; font-size: 10px; letter-spacing: 0.22em;
  color: var(--wc-indigo); opacity: .85; padding-left: 10px;
  border-left: 1px solid var(--wc-border); line-height: 1;
}
@media (max-width: 640px) { .logo-desc { display: none; } }

/* ===== Seletor de idiomas (Onda 2 preparada; só PT ativo) ===== */
.lang-switch { position: relative; display: inline-flex; }
.lang-switch__btn {
  background: none; border: 1px solid var(--wc-border); border-radius: 999px;
  font: inherit; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: inherit; padding: 2px 10px; cursor: pointer; line-height: 1.4;
}
.lang-switch__btn::after { content: ""; display: inline-block; margin-left: 6px; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px); }
.lang-switch__menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0; z-index: 60;
  background: var(--wc-white); border: 1px solid var(--wc-border); border-radius: 12px;
  box-shadow: var(--wc-shadow-soft); padding: 8px; min-width: 190px;
}
.lang-switch.is-open .lang-switch__menu { display: grid; gap: 2px; }
.lang-switch__menu span {
  font-size: 12.5px; padding: 6px 10px; border-radius: 8px; color: var(--wc-indigo);
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
}
.lang-switch__menu .is-current { background: var(--wc-ivory); font-weight: 700; }
.lang-switch__menu .is-soon { color: var(--wc-gray); }
.lang-switch__menu .is-soon small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--wc-teal); }

/* ===== Mapa boca-corpo (hub sistêmico): palco escuro, figura humana em
   line-art com órgãos desenhados, linhas que se desenham a partir da BOCA ===== */
.bc-stage {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 34px; align-items: center;
  background: radial-gradient(120% 90% at 30% 20%, #253357 0%, #1a2440 55%, #141c33 100%);
  border-radius: 28px; padding: 44px 46px;
  box-shadow: 0 30px 70px rgba(16, 24, 48, .35);
}
.bc-map { position: relative; width: 100%; max-width: 470px; aspect-ratio: 460 / 720; margin: 0 auto; }
.bc-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.bc-figure { fill: none; stroke: rgba(255,255,255,.34); stroke-width: 1.6; transition: all .5s ease; }
.bc-map.is-longevity .bc-figure { stroke: #5eead4; filter: drop-shadow(0 0 6px rgba(94,234,212,.55)); }
.bc-organ { fill: none; stroke: rgba(148,226,213,.42); stroke-width: 1.5; transition: all .35s ease; }
.bc-organ.is-active { stroke: #7ff5e3; filter: drop-shadow(0 0 5px rgba(94,234,212,.8)); }
.bc-line { fill: none; stroke: rgba(255,255,255,.10); stroke-width: 1; transition: stroke .3s ease; }
.bc-line.is-active { stroke: #5eead4; stroke-width: 1.8; filter: drop-shadow(0 0 4px rgba(94,234,212,.7)); }
.bc-node { fill: #35d3b8; stroke: rgba(255,255,255,.85); stroke-width: 1.1; cursor: pointer; transition: all .25s ease; }
.bc-node.is-active { fill: #7ff5e3; }
.bc-ring { fill: none; stroke: rgba(94,234,212,.55); transform-box: fill-box; transform-origin: center; animation: bcRing 2.6s ease-out infinite; pointer-events: none; }
@keyframes bcRing { 0% { transform: scale(.6); opacity: .8; } 70% { transform: scale(2.4); opacity: 0; } 100% { opacity: 0; } }
.bc-mouth-label {
  position: absolute; z-index: 2; transform: translate(-50%, 0);
  color: rgba(255,255,255,.85); font-size: 8.5px; font-weight: 700; letter-spacing: .22em;
  pointer-events: none;
}
.bc-map__node {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  font: inherit; font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.85); padding: 5px 12px; cursor: pointer; white-space: nowrap;
  transition: all .2s ease; backdrop-filter: blur(4px);
}
.bc-map__node--l { left: 0; transform: translate(0, -50%); }
.bc-map__node--r { right: 0; transform: translate(0, -50%); }
.bc-map__node--c { left: 50%; bottom: -6px; transform: translate(-50%, 0); }
.bc-map__node:hover { border-color: rgba(94,234,212,.7); color: #fff; }
.bc-map__node.is-active { background: #2dd4bf; border-color: #2dd4bf; color: #10231f; }
.bc-leader { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; transition: stroke .3s ease; }
.bc-leader.is-active { stroke: rgba(94,234,212,.75); }
.bc-panel { border-radius: 20px; padding: 30px 32px; min-height: 280px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14);
}
.bc-panel__tag { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #5eead4; display: block; margin-bottom: 10px; }
.bc-panel h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 21px; color: #fff; font-weight: 700; line-height: 1.25; }
.bc-panel p { margin: 0 0 14px; font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.65; }
.bc-panel a { color: #5eead4; }
.bc-panel__soon { font-size: 12px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.14); padding-top: 12px; display: block; }
@media (prefers-reduced-motion: reduce) {
  .bc-ring { animation: none; opacity: 0; }
  .bc-line, .bc-figure, .bc-organ { transition: none; }
}
@media (max-width: 960px) {
  .bc-stage { grid-template-columns: 1fr; padding: 30px 18px; }
  .bc-map { max-width: 400px; }
  .bc-map__node { font-size: 9px; padding: 4px 8px; }
}
.bc-all { margin-top: 34px; }
.bc-all > summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--wc-indigo); letter-spacing: .02em; margin-bottom: 18px; width: fit-content;
}
@media (max-width: 860px) {
  .bc-wrap { grid-template-columns: 1fr; }
  .bc-map { max-width: 420px; }
  .bc-map__node { font-size: 9px; padding: 4px 8px; }
}

/* ===== Logos de parceria em proporção uniforme (decisão do dono, 09/07 noite):
   toda marca vive numa caixa idêntica; o logo se ajusta por object-fit ===== */
.logo-strip--uniform { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.logo-strip--uniform .logo-strip__tile {
  width: 200px; height: 84px; display: flex; align-items: center; justify-content: center;
  background: var(--wc-white); border: 1px solid var(--wc-border); border-radius: 14px;
  padding: 16px 22px;
}
.logo-strip--uniform .logo-strip__tile img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1); opacity: .8; transition: all .2s ease;
}
.logo-strip--uniform .logo-strip__tile:hover img { filter: grayscale(0); opacity: 1; }
.logo-strip__tile--text {
  font-family: var(--font-display); font-size: 13px; font-weight: 700; line-height: 1.3;
  letter-spacing: .04em; text-align: center; color: var(--wc-gray); text-transform: uppercase;
}
@media (max-width: 640px) { .logo-strip--uniform .logo-strip__tile { width: calc(50% - 9px); } }

/* ===== G7 (revisão Jonatã 01/08): link no corpo do texto precisa parecer
   link sem hover (WCAG 1.4.1). Só links sem classe dentro do conteúdo:
   botões, cards e header/footer (fora do <main>) ficam intactos. ===== */
main p a:not([class]),
main li a:not([class]) {
  color: var(--wc-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 184, 176, 0.45);
}
main p a:not([class]):hover,
main li a:not([class]):hover {
  color: var(--wc-blue-clinical);
  text-decoration-color: currentColor;
}

/* ===== G2 (revisão Jonatã 01/08): Framework Boca-Corpo em HTML no lugar
   da imagem. Bloco do anexo A adaptado aos tokens da marca; prefixo .wcfw-
   para não conflitar. ===== */
.wcfw { color: var(--wc-indigo); line-height: 1.5; padding-bottom: clamp(28px, 4vw, 56px); }
.wcfw p, .wcfw h2, .wcfw h3, .wcfw ol { margin: 0; }
.wcfw a { color: var(--wc-teal); text-decoration: none; transition: color .24s cubic-bezier(.22,1,.36,1); }
.wcfw a:hover { color: var(--wc-blue-clinical); }

.wcfw-head { background: var(--wc-gradient); color: #fff; border-radius: 28px; padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 48px); }
.wcfw-head__in { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(14px, 1.8vw, 22px); }
.wcfw-eyebrow { padding: 9px 20px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-size: clamp(10px, 1.05vw, 12px); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; }
.wcfw-title { font-size: clamp(2.05rem, 6.2vw, 4.25rem); line-height: 1.06; letter-spacing: -.02em; font-weight: 300; color: #fff; text-wrap: balance; }
.wcfw-title b { font-weight: 700; }
.wcfw-title span { color: var(--wc-teal-200, #8AE0DA); font-weight: 300; white-space: nowrap; }
.wcfw-sub { font-size: clamp(.95rem, 2.1vw, 1.375rem); font-weight: 300; line-height: 1.4; color: rgba(255,255,255,.94); }
.wcfw-rule { width: 56px; height: 1px; background: rgba(255,255,255,.5); }
.wcfw-claim { font-size: clamp(1.0625rem, 2.6vw, 1.625rem); font-weight: 300; line-height: 1.35; color: #fff; text-wrap: balance; }
.wcfw-claim b { font-weight: 700; }

.wcfw-body { max-width: 1200px; margin: 0 auto; padding: clamp(28px, 4vw, 56px) 0 0; display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px); }
.wcfw-intro { max-width: 64ch; font-size: clamp(1rem, 1.6vw, 1.125rem); font-weight: 300; line-height: 1.6; color: var(--wc-gray); }

.wcfw-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(12px, 1.6vw, 20px); }
.wcfw-card { display: flex; gap: clamp(12px, 1.4vw, 16px); align-items: flex-start; background: var(--wc-white); border: 1px solid var(--wc-border, #D6DCE7); border-radius: 16px; box-shadow: 0 4px 20px rgba(78,104,152,.08); padding: clamp(18px, 2vw, 24px); transition: box-shadow .24s cubic-bezier(.22,1,.36,1); }
.wcfw-card:hover { box-shadow: 0 8px 32px rgba(78,104,152,.12); }
.wcfw-card__key { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 8px; background: var(--wc-teal-50, #E5F8F7); color: var(--wc-teal-700, #007A76); font-weight: 700; font-size: .9375rem; }
.wcfw-card__txt { display: flex; flex-direction: column; gap: 5px; }
.wcfw-card h3 { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); font-weight: 700; line-height: 1.25; color: var(--wc-indigo); }
.wcfw-card p { font-size: clamp(.9375rem, 1.3vw, 1rem); line-height: 1.5; color: var(--wc-gray); text-wrap: pretty; }

.wcfw-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(16px, 2vw, 28px); background: var(--wc-ivory); border: 1px solid var(--wc-border, #D6DCE7); border-radius: 16px; padding: clamp(20px, 2.4vw, 32px); }
.wcfw-cta__txt { display: flex; flex-direction: column; gap: 6px; flex: 1 1 320px; min-width: min(100%, 280px); }
.wcfw-cta h3 { font-size: clamp(1.125rem, 1.8vw, 1.5rem); font-weight: 700; line-height: 1.25; color: var(--wc-indigo); }
.wcfw-cta p { font-size: clamp(.9375rem, 1.3vw, 1rem); line-height: 1.5; color: var(--wc-gray); }
.wcfw a.wcfw-btn { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; background: var(--wc-teal); color: #fff; font-weight: 700; font-size: 1rem; border-radius: 8px; transition: background .24s cubic-bezier(.22,1,.36,1); }
.wcfw a.wcfw-btn:hover { background: var(--wc-blue-clinical); color: #fff; }
.wcfw a.wcfw-btn:active { transform: scale(.99); }

.wcfw-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--wc-border, #D6DCE7); padding-top: clamp(16px, 2vw, 24px); font-size: .875rem; font-weight: 300; letter-spacing: .04em; color: var(--wc-gray); }

@media (prefers-reduced-motion: no-preference) {
  .wcfw-card { animation: wcfw-up .48s cubic-bezier(.22,1,.36,1) both; }
  .wcfw-card:nth-child(2) { animation-delay: .045s; }
  .wcfw-card:nth-child(3) { animation-delay: .09s; }
  .wcfw-card:nth-child(4) { animation-delay: .135s; }
  .wcfw-card:nth-child(n+5) { animation-delay: .18s; }
}
@keyframes wcfw-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ===== Cards de equipe: retrato uniforme 3/4, sem crop de cabeça ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; max-width: 1080px; margin: 0 auto; }
.team-card { background: var(--wc-white); border: 1px solid var(--wc-border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.team-card__photo { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 18%; display: block; }
.team-card__tile {
  aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wc-ivory), var(--wc-bone));
}
.team-card__tile span { font-family: var(--font-display); font-size: 64px; color: var(--wc-indigo); opacity: .35; letter-spacing: -0.02em; }
.team-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.team-card__body h3 { margin: 0; font-size: 19px; font-weight: 600; color: var(--wc-indigo); font-family: var(--font-display); }
.team-card__role { margin: 2px 0 6px; font-size: 13px; color: var(--wc-teal); font-weight: 600; }
.team-card__cro { margin: 0; font-size: 11.5px; color: var(--wc-gray); letter-spacing: .04em; }
.team-card__bio { margin: 8px 0 0; font-size: 13.5px; color: var(--wc-gray-700); line-height: 1.5; }
.team-card__link { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--wc-teal); }
