/* ============================================================
   ALLENZA — Fisioterapia & Pilates
   Brand system: deep teal-green + warm off-white,
   elegant contemporary serif (The Seasons → Cormorant) +
   humanist sans (Calibri → Mulish). Sage & teal accents.
   ============================================================ */

:root {
  --bg:        #edeeeb;   /* warm off-white (primary background) */
  --bg-2:      #e6e8e3;   /* slightly deeper cream panel */
  --ink:       #293f3d;   /* deep teal-green (primary) */
  --ink-2:     #34504d;
  --cream:     #f4f5f2;   /* near-white text on dark */
  --sage:      #7f967e;   /* secondary */
  --teal:      #008a8a;   /* secondary accent (sparingly) */
  --gray:      #d4d8d9;   /* support */
  --ink-soft:  rgba(41, 63, 61, 0.62);
  --ink-faint: rgba(41, 63, 61, 0.10);
  --line:      rgba(41, 63, 61, 0.15);
  --line-2:    rgba(41, 63, 61, 0.08);
  --cream-soft: rgba(244, 245, 242, 0.66);
  --cream-line: rgba(244, 245, 242, 0.16);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Mulish', system-ui, -apple-system, sans-serif;

  --maxw: 1300px;
  --gut: clamp(20px, 5vw, 80px);
  --radius: 3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--ink); color: var(--cream); }

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { position: relative; padding: clamp(76px, 11vw, 156px) 0; }

/* ---- label (tracked humanist, like the brand tagline) ---- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 30px;
}
.eyebrow span { white-space: nowrap; }
.eyebrow .dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; flex: none; }
.eyebrow .idx { margin-left: auto; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.18em; white-space: nowrap; padding-left: 18px; }
.section--dark .eyebrow { color: var(--gray); }
.section--dark .eyebrow .dot { background: var(--sage); }
.section--dark .eyebrow .idx { color: var(--cream-soft); }

/* ---- display serif headings ---- */
.display {
  font-family: var(--serif); font-weight: 500;
  line-height: 1.02; letter-spacing: -0.005em;
}
h2.display { font-size: clamp(38px, 6vw, 82px); }
.display em { font-style: italic; color: var(--sage); }
.lead { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.66; max-width: 56ch; }

/* ============================================================
   DARK (teal) SECTION
   ============================================================ */
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark .lead { color: var(--cream-soft); }
.section--dark .display em { color: var(--sage); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(237, 238, 235, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mono-mark { width: 40px; height: auto; flex: none; }
.brand .brand-text { display: flex; flex-direction: column; }
.brand .word { font-family: var(--serif); font-weight: 500; font-size: 30px; letter-spacing: 0.01em; line-height: 1; color: var(--ink); }
.brand .tag { font-family: var(--sans); font-size: 8.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-top: 4px; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; border: 1px solid var(--line); border-radius: 100px; padding: 5px; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-soft); padding: 9px 18px; border-radius: 100px;
  transition: color .22s, background .22s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(41, 63, 61, 0.07); }

.nav-right { margin-left: 20px; display: flex; align-items: center; gap: 20px; }
.nav-phone { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); white-space: nowrap; }
.nav-phone:hover { color: var(--ink); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  padding: 13px 24px; border-radius: 100px;
  transition: transform .25s ease, background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--sage { background: var(--sage); color: var(--cream); }
.btn--sage:hover { background: #6f876e; transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); }
.btn--cream-ghost { border: 1px solid var(--cream-line); color: var(--cream); }
.btn--cream-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 13.5px; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 17px; height: 1.6px; background: var(--ink); transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; height: 100vh; z-index: 75; background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--gut);
  overflow-y: auto;
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1), visibility .5s;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a:not(.btn) {
  font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 9vw, 60px);
  letter-spacing: 0; padding: 12px 0; border-bottom: 1px solid var(--cream-line);
  display: flex; align-items: baseline; gap: 16px; color: var(--cream);
}
.mobile-menu a .n { font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--sage); letter-spacing: 0.1em; }
.mobile-menu .mm-foot { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(120px, 16vh, 188px); padding-bottom: clamp(50px, 7vw, 90px); overflow: hidden; }
.hero-eyebrow { margin-bottom: 28px; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
.hero-text { min-width: 0; }
.hero h1 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.06; font-size: clamp(40px, 4.6vw, 72px); color: var(--ink);
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub { margin-top: 26px; max-width: 44ch; color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.66; }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* hero media */
.hero-media { position: relative; }
.hero-frame { position: relative; aspect-ratio: 4 / 5; max-height: 62vh; background: var(--bg-2); border-radius: 200px 200px 6px 6px; overflow: hidden; border: 1px solid var(--line); }
.hero-frame image-slot, .hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-motif { position: absolute; right: -34px; bottom: -10px; width: clamp(70px, 8vw, 104px); z-index: 4; opacity: .9; pointer-events: none; }
.hero-badge {
  position: absolute; top: -22px; left: -22px; z-index: 4;
  background: var(--ink); color: var(--cream); border-radius: 50%;
  width: 112px; height: 112px; display: grid; place-content: center; text-align: center;
  font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; line-height: 1.6; text-transform: uppercase;
}
.hero-badge b { display: block; font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: 0; }

/* spine of dots motif */
.spine { display: inline-flex; flex-direction: column; align-items: center; gap: 9px; }
.spine span { width: 9px; height: 9px; border-radius: 50%; background: var(--gray); }
.spine span:nth-child(3n) { background: var(--sage); }

/* stats / pillars */
.stats { margin-top: clamp(46px, 6vw, 70px); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px 0 0; border-right: 1px solid var(--line-2); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.01em; line-height: 1; color: var(--ink); }
.stat .num .o { color: var(--sage); }
.stat .lab { margin-top: 12px; font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 30px 56px; align-items: start; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head .sh-title { max-width: 20ch; }
.sec-head .sh-aside { max-width: 38ch; padding-top: 6px; }

/* stacked header: title (2 lines) with the description directly below */
.sec-head--stack { display: block; }
.sec-head--stack .sh-title { max-width: none; }
.sec-head--stack h2.display { max-width: 16ch; }
.sec-head--stack .lead { margin-top: 24px; max-width: 60ch; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; } }

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.about-content .eyebrow { margin-bottom: 22px; }
.about-figure { position: relative; }
.about-figure .a-frame { aspect-ratio: 4/5; background: rgba(244,245,242,.06); border: 1px solid var(--cream-line); border-radius: 220px 220px 6px 6px; overflow: hidden; }
.about-figure image-slot, .about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-figure .a-motif { position: absolute; left: -30px; top: 40px; width: clamp(64px, 7vw, 92px); z-index: 3; filter: brightness(0) saturate(100%) invert(86%) sepia(8%) saturate(180%) hue-rotate(70deg) brightness(95%); opacity: .85; }
.about-title { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.005em; font-size: clamp(34px, 5vw, 64px); }
.about-title em { font-style: italic; color: var(--sage); }
.about-body p { color: var(--cream-soft); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.72; margin-bottom: 18px; max-width: 52ch; }
.about-body p:last-of-type { margin-bottom: 0; }
.about-body strong { color: var(--cream); font-weight: 700; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ap { display: flex; align-items: center; gap: 10px; border: 1px solid var(--cream-line); border-radius: 100px; padding: 10px 18px 10px 14px; }
.ap-n { font-family: var(--serif); font-size: 15px; color: var(--sage); }
.ap b { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-figure { max-width: 420px; } }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 4.6vw, 60px) clamp(34px, 4vw, 64px); }
.spec { display: flex; flex-direction: column; }
.spec-head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
.spec-icon { width: 56px; height: 56px; flex: none; border-radius: 16px; background: rgba(127, 150, 126, 0.16); color: var(--ink); display: grid; place-content: center; transition: background .3s ease, color .3s ease; }
.spec-icon svg { width: 29px; height: 29px; }
.spec:hover .spec-icon { background: var(--sage); color: var(--cream); }
.spec-titles { width: 100%; }
.spec-titles h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 1.9vw, 26px); line-height: 1.14; letter-spacing: -0.005em; }
.spec-sub { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(15px, 1.4vw, 17px); font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--sage); margin-top: 6px; line-height: 1.28; }
.spec-divider { height: 1px; background: var(--line); margin: 18px 0 16px; }
.spec p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.62; }

.spec--cta { background: var(--ink); color: var(--cream); border-radius: 18px; padding: 30px 28px; justify-content: flex-start; }
.spec--cta:hover { background: var(--ink-2); }
.spec--cta h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2vw, 27px); line-height: 1.12; color: var(--cream); }
.spec--cta p { color: var(--cream-soft); margin-top: 12px; }
.spec--cta .cta-arrow { margin-top: auto; padding-top: 18px; font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--sage); }

/* ============================================================
   EQUIPE
   ============================================================ */
.team-grid { display: flex; flex-wrap: wrap; gap: clamp(20px, 2.6vw, 36px); }
.member { position: relative; flex: 1 1 300px; max-width: 400px; }
.member .m-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 180px 180px 4px 4px; background: var(--bg-2); border: 1px solid var(--line); }
.member image-slot, .member .m-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member .m-num { position: absolute; top: 16px; left: 16px; z-index: 3; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--ink); background: rgba(237,238,235,.78); padding: 5px 10px; border-radius: 100px; backdrop-filter: blur(4px); }
.member .m-info { padding: 20px 4px 0; }
.member h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; letter-spacing: -0.005em; }
.member .m-role { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-top: 8px; }
.member .m-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.member .m-tags span { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px; }
.member .m-crefito { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 16px; }

/* ============================================================
   DEPOIMENTOS (dark teal)
   ============================================================ */
.google-badge { display: inline-flex; align-items: center; gap: 14px; border: 1px solid var(--cream-line); border-radius: 100px; padding: 11px 20px; }
.google-badge .g { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--cream); }
.google-badge .score { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--cream); }
.google-badge .stars { color: var(--sage); letter-spacing: 2px; font-size: 13px; }
.google-badge .gmeta { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-soft); }

.testi-track-wrap { position: relative; }
.testi-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.tcard {
  scroll-snap-align: start; flex: 0 0 clamp(280px, 33vw, 400px);
  background: rgba(244,245,242,.05); border: 1px solid var(--cream-line); border-radius: 8px;
  padding: 32px 30px; display: flex; flex-direction: column;
}
.tcard.feat { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.tcard .t-stars { color: var(--sage); letter-spacing: 3px; font-size: 15px; }
.tcard blockquote { font-family: var(--serif); font-size: clamp(18px, 1.7vw, 22px); font-weight: 500; line-height: 1.4; margin: 20px 0 28px; color: var(--cream); font-style: italic; }
.tcard.feat blockquote { color: var(--ink); }
.tcard .t-foot { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.tcard .t-av { width: 42px; height: 42px; border-radius: 50%; background: var(--sage); display: grid; place-content: center; font-family: var(--serif); font-weight: 600; font-size: 18px; flex: none; color: var(--cream); }
.tcard .t-name { font-weight: 700; font-size: 14.5px; color: var(--cream); }
.tcard.feat .t-name { color: var(--ink); }
.tcard .t-meta { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--cream-soft); text-transform: uppercase; }
.tcard.feat .t-meta { color: var(--ink-soft); }
.testi-ctrls { display: flex; gap: 10px; }
.t-btn { width: 50px; height: 50px; border: 1px solid var(--cream-line); border-radius: 50%; display: grid; place-content: center; color: var(--cream); transition: .2s; }
.t-btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ============================================================
   CTA / CONTATO
   ============================================================ */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 4vw, 64px); align-items: stretch; }
.cta h2 { font-family: var(--serif); font-weight: 500; line-height: 1.03; letter-spacing: -0.01em; font-size: clamp(42px, 6vw, 84px); }
.cta h2 em { font-style: italic; color: var(--sage); }
.cta-lead { margin-top: 24px; color: var(--ink-soft); font-size: 17px; line-height: 1.66; max-width: 42ch; }
.cta-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.contact-card { background: var(--ink); color: var(--cream); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.contact-map { position: relative; height: clamp(200px, 26vw, 290px); background: var(--ink-2); }
.contact-map image-slot { width: 100%; height: 100%; }
.map-embed { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); z-index: 3; pointer-events: none; }
.contact-rows { padding: 28px 30px; display: grid; gap: 2px; }
.crow { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--cream-line); align-items: start; }
.crow:last-child { border-bottom: none; }
.crow .ck { font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); padding-top: 3px; }
.crow .cv { font-size: 15px; line-height: 1.55; color: var(--cream); }
.crow .cv span { color: var(--cream-soft); display: block; font-size: 13.5px; }

/* ============================================================
   FOOTER (dark teal)
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: clamp(60px,7vw,90px) 0 60px; }
.footer .f-brand .word { font-family: var(--serif); font-weight: 500; font-size: 32px; letter-spacing: 0.01em; color: var(--cream); }
.footer .f-brand .tag { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--sage); margin-top: 4px; }
.footer .f-brand p { color: var(--cream-soft); font-size: 14px; line-height: 1.66; margin-top: 18px; max-width: 32ch; }
.fcol h4 { font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-soft); margin-bottom: 18px; }
.fcol a, .fcol p { display: block; color: var(--cream); font-size: 14px; padding: 5px 0; transition: color .2s; }
.fcol a:hover { color: var(--sage); }
.footer-watermark {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(80px, 20vw, 320px); line-height: 0.82; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px var(--cream-line);
  white-space: nowrap; user-select: none; padding: 10px 0 0;
}
.footer-bar { border-top: 1px solid var(--cream-line); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bar p, .footer-bar a { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: var(--cream-soft); }
.footer-bar a:hover { color: var(--cream); }

/* ============================================================
   REVEAL (transform-only — screenshot/print safe)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal:not(.in) { transform: translateY(16px); }
  .reveal.d1:not(.in) { transform: translateY(26px); }
  .reveal.d2:not(.in) { transform: translateY(34px); }
  .reveal.d3:not(.in) { transform: translateY(42px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(34px, 4vw, 48px) clamp(28px, 3.4vw, 44px); }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: clamp(28px, 4vw, 48px); }
}

/* tablet / small laptop */
@media (max-width: 960px) {
  .nav { height: 70px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .brand .word { font-size: 26px; }
  .brand .mono-mark { width: 34px; }

  .hero { padding-top: 116px; }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(36px, 7vw, 52px); }
  .hero-media { display: block; max-width: 460px; }
  .hero-frame { aspect-ratio: 5 / 4; max-height: none; border-radius: 160px 160px 6px 6px; }
  .hero-badge { top: -18px; left: auto; right: 14px; width: 92px; height: 92px; }
  .hero-badge b { font-size: 27px; }
  .hero-motif { right: -22px; width: 76px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { padding: 24px 18px; border-right: none; border-bottom: 1px solid var(--line-2); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line-2); }

  .cta-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
}

/* phones */
@media (max-width: 640px) {
  :root { --gut: 22px; }
  .section { padding: clamp(60px, 15vw, 84px) 0; }

  .nav { height: 64px; }
  .brand .word { font-size: 23px; }
  .brand .tag { font-size: 8px; letter-spacing: 0.26em; }
  .nav-right { gap: 12px; }
  .btn { padding: 12px 18px; font-size: 12.5px; }
  .btn--lg { padding: 15px 24px; font-size: 13px; }

  .hero { padding-top: 104px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-media { max-width: 100%; }
  .hero-frame { aspect-ratio: 4 / 5; max-height: 70vh; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }

  .stats { grid-template-columns: 1fr 1fr; }
  .eyebrow { font-size: 11px; letter-spacing: 0.2em; gap: 10px; }
  .eyebrow .idx { display: none; }

  .spec-grid { grid-template-columns: 1fr; gap: 36px; }
  .spec-divider { margin: 16px 0 14px; }

  .about-grid { gap: 32px; }
  .about-figure { max-width: 100%; }
  .about-figure .a-motif { left: -14px; width: 64px; }
  .about-points { gap: 8px; }

  .team-grid { gap: 30px; }
  .member { max-width: 100%; }

  .sec-head--stack h2.display { max-width: 100%; }
  .sec-head { margin-bottom: 36px; }

  /* depoimentos: google badge below title, left aligned */
  .testi .sh-aside { justify-content: flex-start !important; margin-top: 22px; }
  .tcard { flex-basis: 84vw; padding: 26px 24px; }
  .testi-ctrls { margin-top: 24px; }

  .contact-card { border-radius: 8px; }
  .crow { grid-template-columns: 84px 1fr; gap: 12px; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 48px; }
  .footer-watermark { font-size: 26vw; }
  .footer-bar { flex-direction: column; gap: 10px; }

  .mobile-menu a:not(.btn) { font-size: clamp(32px, 11vw, 46px); }
}

/* very small phones */
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
  .stat:nth-child(odd) { border-right: none; }
  .hero-cta .btn { flex: 1 1 100%; }
}

#tweaks-root { position: fixed; z-index: 200; }
