/* ===========================================================
   Plim Plim — Landing page styles
   Brand tokens come from assets/colors_and_type.css
   Three switchable visual directions via [data-dir] on <html>:
     classico (default) · vibrante · suave
   =========================================================== */

@import url('assets/colors_and_type.css');

/* ---------- per-page semantic vars (default = "Clássico") ---------- */
:root {
  --page-bg: var(--off-white);
  --hero-bg: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
  --hero-fg: var(--navy);
  --hero-lead: var(--fg2);
  --card-bg: #fff;
  --card-radius: var(--r-lg);
  --card-shadow: var(--shadow-sm);
  --card-shadow-hover: var(--shadow-lg);
  --accent-em: var(--teal);
  --tint-soft: var(--teal-100);
  --band-bg: var(--teal);
  --band-fg: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--fg1);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { scroll-margin-top: 90px; }

/* visually-hidden / skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0;
  font-family: var(--font-heading); font-weight: 800;
}
.skip:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- icons ---------- */
.ico { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; flex: none; }
.ico-fill { fill: currentColor; stroke: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  border: none; cursor: pointer; border-radius: var(--r-pill); padding: 14px 26px;
  text-decoration: none; line-height: 1;
  transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur), background var(--dur), color var(--dur);
}
.btn .ico { width: 20px; height: 20px; }
.btn-wa { background: #25D366; color: #07351b; box-shadow: 0 8px 0 rgba(11,99,52,.30); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 11px 0 rgba(11,99,52,.30); }
.btn-wa:active { transform: translateY(4px); box-shadow: 0 3px 0 rgba(11,99,52,.30); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 0 rgba(8,140,134,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 11px 0 rgba(8,140,134,.35); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 3px 0 rgba(8,140,134,.35); }
.btn-warm { background: var(--amber); color: var(--navy); box-shadow: 0 8px 0 rgba(168,112,0,.30); }
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 11px 0 rgba(168,112,0,.30); }
.btn-warm:active { transform: translateY(4px); box-shadow: 0 3px 0 rgba(168,112,0,.30); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 17px; }
:focus-visible { outline: 3px solid var(--accent-action); outline-offset: 3px; border-radius: 6px; }

/* ---------- eyebrow / tags ---------- */
.eyebrow { font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-action); display: inline-block; }
.tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-heading); font-weight: 800; font-size: 13.5px; border-radius: var(--r-pill); padding: 8px 15px; background: #f0f1f6; color: var(--navy); }
.tag .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.confetti { position: absolute; pointer-events: none; line-height: 0; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--page-bg) 86%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }
.nav-logo { flex: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo .logo-light { display: none; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-family: var(--font-heading); font-weight: 700; font-size: 15.5px; color: var(--fg1); text-decoration: none; }
.nav-links a:hover { color: var(--accent-action); }

/* nav dropdown */
.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-heading); font-weight: 700; font-size: 15.5px; color: var(--fg1); background: none; border: none; cursor: pointer; padding: 0; line-height: 1; }
.nav-drop-btn:hover { color: var(--accent-action); }
.nav-chev { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-soft); }
.nav-drop[data-open="true"] .nav-chev { transform: rotate(180deg); }
.nav-drop-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-6px) scale(.96); transform-origin: top center; min-width: 246px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur) var(--ease-bounce); z-index: 60; }
.nav-drop-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu, .nav-drop[data-open="true"] .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.nav-drop-menu a { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); color: var(--navy); text-decoration: none; padding: 10px 12px; border-radius: var(--r-md); }
.nav-drop-menu a:hover { background: var(--bg-tint); }
.nd-ic { flex: none; width: 38px; height: 38px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; }
.nd-ic .ico { width: 21px; height: 21px; }
.nd-t { display: block; font-weight: 800; font-size: 15.5px; line-height: 1.15; }
.nd-s { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: var(--fg3); margin-top: 1px; }
.nav-drop-menu a:hover .nd-t { color: var(--accent-action); }

/* mobile menu group */
.mm-group { padding-bottom: 4px; }
.mm-label { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--fg3); padding-top: 13px; }
.mm-group a { padding-left: 14px !important; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 14px; border: 2px solid var(--border-strong); background: #fff; color: var(--navy); cursor: pointer; align-items: center; justify-content: center; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 76px 0 88px; background: var(--hero-bg); color: var(--hero-fg); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(40px, 5.2vw, 64px); line-height: 1.0; letter-spacing: -.02em; margin: 16px 0 18px; color: var(--hero-fg); }
.hero h1 em { font-style: normal; color: var(--accent-em); }
.hero .lead { font-size: 20px; line-height: 1.55; color: var(--hero-lead); max-width: 540px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-eyebrow { color: var(--accent-em); }

/* hero side card */
.hero-card { position: relative; background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 28px; }
.hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-card-ic { width: 54px; height: 54px; border-radius: 16px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; color: var(--teal); flex: none; }
.hero-card-ic .ico { width: 28px; height: 28px; }
.hero-card-title { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--navy); line-height: 1.15; }
.hero-card-sub { font-size: 14px; color: var(--fg2); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.hero-fact { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--fg2); line-height: 1.35; }
.hero-fact .ico { width: 18px; height: 18px; color: var(--accent-action); margin-top: 2px; }
.hero-fact strong { display: block; color: var(--navy); font-family: var(--font-heading); font-size: 14px; }

/* ---------- sections ---------- */
.section { padding: 84px 0; position: relative; overflow: hidden; }
.section-tint { background: var(--tint-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 52px; position: relative; z-index: 2; }
.sec-head h2 { margin: 10px 0 14px; }
.sec-head p { font-size: 18px; color: var(--fg2); margin: 0; }
.section-dark .sec-head p { color: var(--fg-on-dark2); }
.group-label { font-family: var(--font-heading); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-300); display: flex; align-items: center; gap: 12px; margin: 8px 0 20px; }
.group-label::after { content: ""; flex: 1; height: 2px; background: var(--border); border-radius: 2px; }

/* ---------- services ---------- */
.svc-group + .svc-group { margin-top: 44px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { position: relative; overflow: hidden; background: var(--card-bg); border-radius: var(--card-radius); box-shadow: var(--card-shadow); padding: 26px; transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.svc-ic { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-ic .ico { width: 28px; height: 28px; }
.svc h3 { margin: 0 0 8px; font-size: 20px; }
.svc p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--fg2); }
.svc-burst { position: absolute; right: -18px; top: -18px; width: 72px; height: 72px; opacity: .12; pointer-events: none; }

/* ---------- exames ---------- */
.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.exam { display: flex; flex-direction: column; background: var(--card-bg, #fff); border-radius: var(--card-radius); box-shadow: var(--card-shadow); border-top: 5px solid var(--svc-color, var(--teal)); padding: 28px; transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur); }
.exam:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.exam-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.exam-head .svc-ic { width: 52px; height: 52px; border-radius: 15px; margin: 0; flex: none; }
.exam-head .svc-ic .ico { width: 26px; height: 26px; }
.exam-head h3 { margin: 0; font-size: 20px; line-height: 1.2; }
.exam > p { margin: 0 0 22px; font-size: 15px; line-height: 1.6; color: var(--fg2); }
.exam-meta { list-style: none; margin: auto 0 0; padding: 18px 0 0; display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--border); }
.exam-meta li { display: flex; gap: 11px; align-items: flex-start; }
.exam-meta .ico { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--svc-color, var(--teal)); }
.exam-meta strong { display: block; font-family: var(--font-heading); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--navy-300); margin-bottom: 2px; }
.exam-meta span { display: block; font-size: 14px; line-height: 1.45; color: var(--fg1); }

/* ---------- approach ---------- */
.appr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.appr-lead { color: var(--fg-on-dark2); font-size: 18px; line-height: 1.55; max-width: 440px; }
.appr-lettering { height: 116px; margin-top: 26px; }
.appr-list { display: flex; flex-direction: column; gap: 20px; }
.appr-item { display: flex; gap: 16px; align-items: flex-start; }
.appr-num { flex: none; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--navy); }
.appr-item h4 { margin: 6px 0 4px; font-size: 18px; }
.appr-item p { margin: 0; font-size: 15px; color: var(--fg-on-dark2); line-height: 1.5; }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 28px; position: relative; }
.tst-stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 14px; }
.tst-stars .ico { width: 18px; height: 18px; }
.tst p { font-size: 16px; line-height: 1.6; color: var(--fg1); margin: 0 0 20px; }
.tst-by { display: flex; align-items: center; gap: 12px; }
.tst-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 18px; flex: none; }
.tst-name { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--navy); }
.tst-meta { display: block; font-size: 13px; color: var(--fg3); margin-top: 2px; }

/* ---------- convênios ---------- */
.conv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.conv { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); height: 130px; display: flex; align-items: center; justify-content: center; padding: 22px 26px; text-align: center; transition: box-shadow var(--dur), transform var(--dur) var(--ease-bounce); }
.conv:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.conv img { max-width: 100%; max-height: 100%; object-fit: contain; }
.conv-particular { background: var(--navy); border-color: var(--navy); }
.conv-particular span { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: #fff; }
.conv-soon img { filter: grayscale(1); opacity: .42; }
.conv-soon:hover img { filter: grayscale(.4); opacity: .7; }
.conv-badge { position: absolute; z-index: 2; top: 12px; right: 12px; background: var(--amber); color: var(--navy); font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: .03em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); box-shadow: var(--shadow-pop); }
.conv-note { text-align: center; margin-top: 26px; color: var(--fg2); font-size: 15px; }

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.gal-grid image-slot { width: 100%; height: 100%; box-shadow: var(--shadow-sm); }
/* let the page scroll when a finger lands on a filled photo (the slot's
   internal touch-action:none is only needed for the editor's reframe mode) */
image-slot::part(image) { touch-action: pan-y pinch-zoom; }

/* ---------- team carousel ---------- */
.team-carousel { position: relative; }
.team-track {
  display: flex; gap: 22px; overflow-x: auto;
  padding: 8px 4px 22px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.team-track::-webkit-scrollbar { display: none; }
.team-track:focus-visible { outline: 3px solid var(--accent-action); outline-offset: 4px; border-radius: var(--r-md); }
.team-track.dragging { scroll-behavior: auto; cursor: grabbing; }
.team-track.dragging .team-card { pointer-events: none; }
.team-card {
  flex: 0 0 234px; background: #fff;
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: 28px 20px; text-align: center; user-select: none;
  display: flex; flex-direction: column; align-items: center;
  transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-av { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); padding: 3px; }
.team-av img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; border-radius: 50%; display: block; background: #eef0f5; }
.team-av span { font-family: var(--font-display); font-weight: 600; font-size: 27px; letter-spacing: .01em; color: #fff; }
.team-name { font-family: var(--font-heading); font-weight: 800; font-size: 16px; line-height: 1.25; color: var(--navy); text-wrap: balance; min-height: 2.5em; display: flex; align-items: center; }
.team-role { font-size: 13.5px; color: var(--fg2); margin-top: 6px; }
.team-crm { font-size: 12.5px; color: var(--fg3); margin-top: auto; padding-top: 8px; }

.team-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: var(--r-pill); border: none;
  background: #fff; color: var(--navy); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform var(--dur) var(--ease-bounce), box-shadow var(--dur), opacity var(--dur);
}
.team-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-lg); color: var(--accent-action); }
.team-arrow:active { transform: translateY(-50%) scale(.94); }
.team-arrow:disabled { opacity: 0; pointer-events: none; }
.team-prev { left: -22px; }
.team-next { right: -22px; }
.team-arrow .ico { width: 24px; height: 24px; }
.team-hint { text-align: center; color: var(--fg3); font-size: 14px; margin-top: 6px; }

@media (max-width: 600px) {
  .team-card { flex-basis: 76vw; max-width: 280px; }
  .team-prev { left: -8px; }
  .team-next { right: -8px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--dur); }
.faq[open] { box-shadow: var(--shadow-md); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 22px; height: 22px; color: var(--teal); transition: transform var(--dur) var(--ease-bounce); flex: none; }
.faq[open] summary .ico { transform: rotate(45deg); }
.faq-body { padding: 0 24px 24px; color: var(--fg2); font-size: 16px; line-height: 1.6; }
.faq-body :where(p) { margin: 0; }

/* ---------- contact / CTA ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.cta-band { position: relative; overflow: hidden; background: var(--band-bg); color: var(--band-fg); border-radius: var(--r-xl); padding: 46px; display: flex; flex-direction: column; justify-content: center; }
.cta-band h2 { color: var(--band-fg); margin: 0 0 12px; font-size: clamp(28px, 3.2vw, 40px); }
.cta-band p { color: color-mix(in srgb, var(--band-fg) 88%, transparent); font-size: 18px; margin: 0 0 26px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.info-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: 34px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-ic { width: 44px; height: 44px; border-radius: 13px; background: var(--teal-100); color: var(--teal); display: flex; align-items: center; justify-content: center; flex: none; }
.info-ic .ico { width: 22px; height: 22px; }
.info-label { font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--fg3); margin-bottom: 3px; }
.info-val { font-size: 16.5px; color: var(--navy); font-weight: 600; }
.info-val a { color: var(--navy); text-decoration: none; }
.info-val a:hover { color: var(--accent-action); }
.map-embed { margin-top: 28px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: #fff; padding: 58px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1.7fr 1fr 1.2fr; gap: 34px; }
.foot-links2 { columns: 2; column-gap: 26px; }
.foot-links2 a { break-inside: avoid; }
.foot-logo { height: 50px; margin-bottom: 16px; }
.foot-about { color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.6; max-width: 270px; margin: 0 0 18px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--dur), transform var(--dur); }
.foot-social a:hover { background: var(--teal); transform: translateY(-2px); }
.footer h5 { font-family: var(--font-heading); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 16px; }
.footer h5.foot-sub { margin-top: 26px; }
.footer nav a, .foot-col a { display: block; color: rgba(255,255,255,.82); text-decoration: none; font-size: 15px; margin-bottom: 11px; }
.footer nav a:hover, .foot-col a:hover { color: var(--teal); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border-on-dark); color: rgba(255,255,255,.5); font-size: 13.5px; flex-wrap: wrap; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(11,99,52,.4); transition: transform var(--dur) var(--ease-bounce); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ico { width: 32px; height: 32px; }

/* ---------- direction switcher ---------- */
.dir-switch { position: fixed; left: 18px; bottom: 18px; z-index: 46; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); box-shadow: var(--shadow-lg); padding: 6px; display: flex; align-items: center; gap: 4px; }
.dir-switch .dir-lbl { font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--fg3); padding: 0 10px 0 12px; }
.dir-switch button { border: none; background: transparent; cursor: pointer; font-family: var(--font-heading); font-weight: 800; font-size: 13px; color: var(--navy-300); padding: 8px 14px; border-radius: var(--r-pill); transition: background var(--dur), color var(--dur); }
.dir-switch button[aria-pressed="true"] { background: var(--navy); color: #fff; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity .6s var(--ease-soft), transform .6s var(--ease-soft); }
}
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   DIRECTION: VIBRANTE — bold, navy-forward, sticker shadows, color blocks
   ===================================================================== */
[data-dir="vibrante"] {
  --hero-bg: var(--navy);
  --hero-fg: #fff;
  --hero-lead: var(--fg-on-dark2);
  --accent-em: var(--amber);
  --card-shadow: var(--shadow-md);
  --card-shadow-hover: var(--shadow-lg);
  --tint-soft: var(--salmon-100);
  --band-bg: var(--navy);
}
[data-dir="vibrante"] .hero { background:
  radial-gradient(circle at 12% 18%, rgba(4,216,208,.16), transparent 40%),
  radial-gradient(circle at 88% 82%, rgba(253,177,19,.14), transparent 42%),
  var(--navy); }
[data-dir="vibrante"] .hero-eyebrow { color: var(--teal); }
[data-dir="vibrante"] .hero-card { background: #fff; box-shadow: 0 14px 0 rgba(0,0,0,.18); }
[data-dir="vibrante"] .nav { background: color-mix(in srgb, var(--navy) 88%, transparent); border-bottom-color: var(--border-on-dark); }
[data-dir="vibrante"] .nav-links a { color: rgba(255,255,255,.85); }
[data-dir="vibrante"] .nav-links a:hover { color: var(--teal); }
[data-dir="vibrante"] .nav-drop-btn { color: rgba(255,255,255,.85); }
[data-dir="vibrante"] .nav-drop-btn:hover { color: var(--teal); }
[data-dir="vibrante"] .nav-burger { background: transparent; color: #fff; border-color: var(--border-on-dark); }
[data-dir="vibrante"] .nav-logo .logo-dark { display: none; }
[data-dir="vibrante"] .nav-logo .logo-light { display: block; }
[data-dir="vibrante"] .btn-primary { background: var(--amber); color: var(--navy); box-shadow: 0 8px 0 rgba(168,112,0,.34); }
[data-dir="vibrante"] .btn-primary:hover { box-shadow: 0 11px 0 rgba(168,112,0,.34); }
[data-dir="vibrante"] .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
[data-dir="vibrante"] .hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
[data-dir="vibrante"] .svc { border-top: 5px solid var(--svc-color, var(--teal)); box-shadow: 0 8px 0 rgba(38,50,90,.08); }
[data-dir="vibrante"] .svc:hover { box-shadow: 0 14px 0 rgba(38,50,90,.12); transform: translateY(-4px); }
[data-dir="vibrante"] .tst { box-shadow: 0 8px 0 rgba(38,50,90,.08); }
[data-dir="vibrante"] .cta-band { box-shadow: inset 0 0 0 3px rgba(255,255,255,.1); }

/* =====================================================================
   DIRECTION: SUAVE — airy, pastel tints, flat soft cards, more breathing room
   ===================================================================== */
[data-dir="suave"] {
  --card-bg: #fff;
  --card-radius: var(--r-xl);
  --card-shadow: 0 4px 18px rgba(38,50,90,.05);
  --card-shadow-hover: 0 12px 30px rgba(38,50,90,.09);
  --accent-em: var(--salmon);
  --tint-soft: var(--amber-100);
}
[data-dir="suave"] .hero { background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%); padding: 92px 0 100px; }
[data-dir="suave"] .hero-eyebrow { color: var(--salmon); }
[data-dir="suave"] .section { padding: 96px 0; }
[data-dir="suave"] .hero-card { box-shadow: 0 20px 50px rgba(38,50,90,.10); }
[data-dir="suave"] .svc { background: var(--svc-tint, #fff); box-shadow: none; border: 1px solid var(--border); }
[data-dir="suave"] .svc:hover { box-shadow: var(--card-shadow-hover); border-color: transparent; }
[data-dir="suave"] .btn-primary { box-shadow: 0 6px 0 rgba(8,140,134,.22); }
[data-dir="suave"] .section-dark { background: linear-gradient(160deg, #2d3a66, var(--navy)); }
[data-dir="suave"] .tst { box-shadow: 0 4px 18px rgba(38,50,90,.05); border: 1px solid var(--border); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .conv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 880px) {
  .nav-cta .btn-wa span.full { display: none; }
  .nav-burger { display: flex; }
  .hero-grid, .appr-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-grid, .tst-grid { grid-template-columns: 1fr 1fr; }
  .exam-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-menu.open { display: block; }
  .mobile-menu { position: fixed; inset: 76px 0 auto 0; background: var(--page-bg); border-bottom: 1px solid var(--border); padding: 18px 28px 26px; z-index: 49; box-shadow: var(--shadow-lg); }
  .mobile-menu a { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--navy); padding: 13px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
  .mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .confetti { display: none; }
  .svc-grid, .tst-grid { grid-template-columns: 1fr; }
  .conv-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .hero-facts { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .section, .hero { padding: 60px 0; }
  .cta-band, .info-card { padding: 30px; }
  .dir-switch { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
  .foot-bottom { justify-content: center; text-align: center; }
}
