/* =========================================================================
   Tonon Odontologia — site styles
   Mobile-first. Tweakable via CSS custom properties on :root.
   ========================================================================= */

/* ── Tokens ──────────────────────────────────────────────────────────── */
:root{
  /* Palette — Tonon Clássico (default) */
  --bg:        #F8FAFC;
  --surface:   #ffffff;
  --surface-2: #FFF5F6;
  --ink:       #111827;
  --ink-2:     #374151;
  --muted:     #9CA3AF;
  --line:      #E4E4E7;
  --line-soft: #F1F5F9;
  --accent:    #6B0F1A;   /* Tonon primary wine */
  --accent-2:  #950F23;
  --accent-soft:#FCE0E4;
  --gold:      #c89760;
  --wa:        #25D366;
  --wa-deep:   #128C7E;

  /* Type */
  --f-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-display: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Layout */
  --container: 1240px;
  --gutter: 20px;
  --section-y: 64px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

@media (min-width: 768px){
  :root{ --gutter: 32px; --section-y: 96px; }
}
@media (min-width: 1100px){
  :root{ --gutter: 48px; --section-y: 120px; }
}

/* ── Reset / base ────────────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; cursor: pointer; }
h1,h2,h3,h4{ margin: 0; font-family: var(--f-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
p{ margin: 0; text-wrap: pretty; }
ul{ margin: 0; padding: 0; list-style: none; }

/* ── Utilities ───────────────────────────────────────────────────────── */
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before{
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7;
}
.section{ padding-block: var(--section-y); }
.section-head{ max-width: 720px; margin-bottom: 40px; }
.section-head h2{
  font-size: clamp(28px, 4.2vw, 44px);
  margin-top: 12px;
}
.section-head p{
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 17px;
  max-width: 60ch;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 52px; padding: 0 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active{ transform: scale(.98); }
.btn .ico{ width: 18px; height: 18px; flex: none; }

.btn-primary{
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(37,211,102,.6), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-primary:hover{ background: var(--wa-deep); }

.btn-secondary{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover{ background: var(--ink); color: var(--bg); }

.btn-dark{
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover{ background: #000; }

.btn-ghost{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover{ background: rgba(255,255,255,.18); }

.btn-sm{ height: 40px; padding: 0 16px; font-size: 14px; }

.link-arrow{
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}
.link-arrow .arr{ transition: transform .2s var(--ease); }
.link-arrow:hover .arr{ transform: translateX(4px); }

/* ── Announcement bar ────────────────────────────────────────────────── */
.announce{
  background: #6B0F1A;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announce-track{
  display: flex; gap: 28px;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.announce-track > div{
  display: flex; gap: 28px;
  animation: scroll-x 38s linear infinite;
  flex: none;
}
.announce-track span{ display: inline-flex; align-items: center; gap: 8px; }
.announce-track .dot{ width: 4px; height: 4px; background: rgba(255,255,255,.5); border-radius: 50%; }
.announce-track .star{ color: var(--gold); }

@keyframes scroll-x{
  from{ transform: translateX(0); }
  to{ transform: translateX(-100%); }
}

/* ── Header ──────────────────────────────────────────────────────────── */
.header{
  position: sticky; top: 0; z-index: 50;
  background: #5C0D17;
  color: #fff;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.header.is-scrolled{
  background: #5C0D17;
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.4);
}
.header-row{
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
@media (min-width: 1100px){ .header-row{ height: 80px; } }

.header .brand{ color: #fff; }
.header .brand-mark{ background: #fff; color: #5C0D17; }
.header .brand-name span{ color: rgba(255,255,255,.65); }

.brand{
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark{
  width: 38px; height: 38px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.brand-name{
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name b{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-name span{
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav{ display: none; }
@media (min-width: 1024px){
  .nav{ display: flex; align-items: center; gap: 8px; }
}
.nav a{
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background .15s, color .15s;
}
.nav a:hover{ background: rgba(255,255,255,.12); color: #fff; }

.nav-dd{ position: relative; }
.nav-dd > button{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--r-pill);
  background: transparent; border: 0;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85);
}
.nav-dd > button:hover{ background: rgba(255,255,255,.12); color: #fff; }
.nav-dd > button .chev{ width: 12px; height: 12px; transition: transform .2s; }
.nav-dd:hover > button .chev{ transform: rotate(180deg); }
.nav-dd-menu{
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 24px 60px -20px rgba(12,42,54,.2);
  opacity: 0; visibility: hidden;
  transition: opacity .15s, transform .15s var(--ease);
  transform: translateX(-50%) translateY(4px);
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu{
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a{
  display: block; padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 14.5px; color: var(--ink-2);
}
.nav-dd-menu a:hover{ background: var(--surface-2); color: var(--ink); }

.header-cta{ display: none; }
@media (min-width: 1024px){ .header-cta{ display: inline-flex; } }
.header .btn-dark{
  background: #fff;
  color: #5C0D17;
}
.header .btn-dark:hover{ background: rgba(255,255,255,.9); color: #5C0D17; }

.menu-toggle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
}
@media (min-width: 1024px){ .menu-toggle{ display: none; } }
.menu-toggle svg{ width: 20px; height: 20px; }

/* ── Mobile menu ─────────────────────────────────────────────────────── */
.mmenu{
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 60;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.mmenu.is-open{ transform: translateY(0); }
.mmenu-head{
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
}
.mmenu-body{
  flex: 1; overflow-y: auto;
  padding: 24px var(--gutter) 32px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mmenu-body a{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 20px; font-weight: 500;
  color: var(--ink);
}
.mmenu-body a .arr{ color: var(--muted); }
.mmenu-group{
  margin-top: 16px;
}
.mmenu-group > b{
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.mmenu-foot{
  padding: 20px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 10px;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero{
  position: relative;
  padding-top: 32px;
  padding-bottom: var(--section-y);
  overflow: hidden;
}
@media (min-width: 768px){ .hero{ padding-top: 56px; } }

.hero-grid{
  display: grid;
  gap: 40px;
}
@media (min-width: 900px){
  .hero-grid{
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
}

.hero-eyebrow-row{
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-rating{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 500;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.hero-rating .stars{ color: var(--gold); letter-spacing: 1px; }
.hero-rating b{ font-weight: 700; }
.hero-rating em{ font-style: normal; color: var(--muted); }

.hero h1{
  font-size: clamp(36px, 6.6vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.hero h1 em{
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero h1 em::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: 6%;
  height: 0.18em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 2px;
}

.hero-lead{
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
}
@media (min-width: 1100px){ .hero-lead{ font-size: 19px; } }

.hero-ctas{
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

.hero-trust{
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 18px 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.hero-trust span{ display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .check{ color: var(--accent); }

/* Hero media (image + floating cards) */
.hero-media{
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: visible;
}
@media (min-width: 900px){ .hero-media{ aspect-ratio: 5 / 6; } }

.hero-img{
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-img .ph{ height: 100%; }

.hero-badge{
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px -16px rgba(12,42,54,.3);
  max-width: 280px;
}
.hero-badge > div{
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.hero-badge .gicon{
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 30%, #FBBC04 60%, #34A853 100%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 38%, #000 39%, #000 100%);
          mask: radial-gradient(circle at 50% 50%, transparent 38%, #000 39%, #000 100%);
  border-radius: 50%;
  flex: none;
  position: relative;
}
.hero-badge .gicon::after{
  content: ""; position: absolute; right: 4px; top: 50%; width: 10px; height: 8px;
  background: #fff;
}
.hero-badge .stars{ color: var(--gold); font-size: 13px; letter-spacing: 1px; line-height: 1; }
.hero-badge b{ font-size: 15px; display: block; }
.hero-badge small{ font-size: 12px; color: var(--muted); }

.hero-chip{
  position: absolute;
  top: 24px; right: -8px;
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px -12px rgba(12,42,54,.4);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.hero-chip .pulse{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 var(--accent-2);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(95,168,168,.7); }
  70%{ box-shadow: 0 0 0 10px rgba(95,168,168,0); }
  100%{ box-shadow: 0 0 0 0 rgba(95,168,168,0); }
}

/* Hero layout: centro (centered, image below) */
body[data-hero-layout="centro"] .hero-grid{
  grid-template-columns: 1fr;
  text-align: center;
  gap: 48px;
}
body[data-hero-layout="centro"] .hero-eyebrow-row,
body[data-hero-layout="centro"] .hero-ctas,
body[data-hero-layout="centro"] .hero-trust{
  justify-content: center;
}
body[data-hero-layout="centro"] .hero-trust{
  border-top: 0;
  padding-top: 8px;
}
body[data-hero-layout="centro"] .hero-lead{
  margin-inline: auto;
}
body[data-hero-layout="centro"] .hero h1{
  font-size: clamp(40px, 7.4vw, 78px);
  max-width: 18ch;
  margin-inline: auto;
}
body[data-hero-layout="centro"] .hero-media{
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16/8;
}
@media (min-width: 900px){
  body[data-hero-layout="centro"] .hero-media{ aspect-ratio: 16/8; }
}

/* Hero decorative arc */
.hero::before{
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 60%);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

/* ── Diferenciais ───────────────────────────────────────────────────── */
.diffs{ background: var(--surface); }
.diffs-grid{
  display: grid;
  gap: 4px;
  background: var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
@media (min-width: 700px){ .diffs-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .diffs-grid{ grid-template-columns: repeat(5, 1fr); } }

.diff{
  background: var(--surface);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.diff-num{
  font-family: var(--f-display);
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.diff h3{
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.diff p{
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ── Especialidades (5 big cards) ────────────────────────────────────── */
.spec-stack{
  display: grid; gap: 24px;
}
@media (min-width: 800px){
  .spec-stack{ grid-template-columns: repeat(2, 1fr); }
  .spec-card:first-child{ grid-column: 1 / -1; }
}
@media (min-width: 1100px){
  .spec-stack{ grid-template-columns: repeat(12, 1fr); gap: 28px; }
  .spec-card{ grid-column: span 6; }
  .spec-card:first-child{ grid-column: span 12; }
  .spec-card.cmp-3{ grid-column: span 4; }
}

.spec-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.spec-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(12,42,54,.25);
}
.spec-card.is-feature{
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 800px){
  .spec-card.is-feature{ grid-template-columns: 1.1fr 1fr; }
}

.spec-media{
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
}
.spec-card.is-feature .spec-media{ aspect-ratio: auto; min-height: 320px; }
.spec-media .ph{ height: 100%; }

.spec-body{
  padding: 28px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.spec-card.is-feature .spec-body{ padding: 36px 32px; gap: 18px; justify-content: center; }
.spec-tag{
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.spec-card h3{
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
}
.spec-card.is-feature h3{ font-size: clamp(26px, 3vw, 34px); }
.spec-card p{
  color: var(--ink-2);
  font-size: 15.5px;
}
.spec-bullets{
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 4px;
}
.spec-bullets li{
  display: flex; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 0;
  position: relative;
}
.spec-bullets li::before{
  content: "";
  width: 16px; height: 16px;
  flex: none;
  margin-top: 4px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.spec-bullets li::after{
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l2.5 2.5 5.5-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8.5l2.5 2.5 5.5-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain;    mask-size: contain;
  pointer-events: none;
}
.spec-foot{ margin-top: auto; padding-top: 4px; }

/* ── Outros tratamentos ─────────────────────────────────────────────── */
.other{ background: var(--surface-2); }
.other-grid{
  display: grid;
  gap: 16px;
}
@media (min-width: 640px){ .other-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .other-grid{ grid-template-columns: repeat(3, 1fr); } }

.other-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s var(--ease);
}
.other-card:hover{ border-color: var(--accent); transform: translateY(-2px); }
.other-icon{
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent);
}
.other-icon svg{ width: 22px; height: 22px; }
.other-card h3{
  font-size: 17px;
  font-weight: 600;
}
.other-card p{
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ── Sobre ──────────────────────────────────────────────────────────── */
.about-grid{
  display: grid; gap: 40px;
}
@media (min-width: 900px){
  .about-grid{ grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
}
.about-media{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-media .ph{ height: 100%; }
.about-content h2{
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
}
.about-content p{
  color: var(--ink-2);
  font-size: 17px;
  margin-bottom: 14px;
}
.about-content blockquote{
  margin: 24px 0;
  padding: 22px 24px;
  background: var(--accent-soft);
  border-radius: var(--r-md);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.about-content blockquote::before{
  content: """;
  position: absolute;
  top: -16px; left: 16px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
}
.about-stats{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-stats b{
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.about-stats span{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Depoimentos ────────────────────────────────────────────────────── */
.testi{ background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.testi .section-head h2{ color: var(--bg); }
.testi .section-head p{ color: rgba(255,255,255,.7); }
.testi .eyebrow{ color: var(--accent-2); }

.testi-meta{
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 28px;
  align-items: center;
}
.testi-rating{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.12);
}
.testi-rating .stars{ color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.testi-rating b{ font-size: 17px; }
.testi-rating em{ font-style: normal; opacity: .7; font-size: 14px; }

.marquee{
  display: flex; gap: 20px;
  padding-block: 8px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  margin-top: 48px;
}
.marquee-track{
  display: flex; gap: 20px;
  animation: scroll-x 60s linear infinite;
  flex: none;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }

.tcard{
  flex: none;
  width: min(360px, 80vw);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.tcard-head{
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.tcard-head .stars{ color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.tcard p{
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}
.tcard-foot{
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.tcard-avatar{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600;
  flex: none;
}
.tcard-name b{ font-size: 14px; display: block; }
.tcard-name span{ font-size: 12px; color: rgba(255,255,255,.5); }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq-grid{
  display: grid; gap: 40px;
}
@media (min-width: 900px){
  .faq-grid{ grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}
.faq-list{ display: flex; flex-direction: column; }
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item .plus{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex: none;
  transition: transform .25s var(--ease), background .2s;
  position: relative;
}
.faq-item .plus::before,
.faq-item .plus::after{
  content: ""; position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.faq-item .plus::before{ width: 12px; height: 1.5px; }
.faq-item .plus::after{ width: 1.5px; height: 12px; transition: transform .25s var(--ease); }
.faq-item[open] .plus{ background: var(--ink); border-color: var(--ink); }
.faq-item[open] .plus::before,
.faq-item[open] .plus::after{ background: var(--bg); }
.faq-item[open] .plus::after{ transform: rotate(90deg); }
.faq-answer{
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

/* ── Localização ────────────────────────────────────────────────────── */
.loc{ background: var(--surface); }
.loc-grid{
  display: grid; gap: 32px;
}
@media (min-width: 900px){
  .loc-grid{ grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 56px; }
}
.loc-map{
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  position: relative;
}
.loc-map iframe{ width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }
.loc-info h2{
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.loc-info p.lead{
  color: var(--ink-2);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 50ch;
}
.loc-card{
  display: flex; gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.loc-card:first-of-type{ border-top: 0; padding-top: 0; }
.loc-card .ico{
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex: none;
}
.loc-card .ico svg{ width: 20px; height: 20px; }
.loc-card b{
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.loc-card span{ color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.loc-actions{
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
}

/* ── CTA final ──────────────────────────────────────────────────────── */
.cta-final{
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-final::before{
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent-2) 32%, transparent), transparent 60%);
}
.cta-final::after{
  content: "";
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent-2) 28%, transparent), transparent 60%);
}
.cta-final .container{ position: relative; }
.cta-final h2{
  font-size: clamp(32px, 5vw, 56px);
  max-width: 18ch;
  margin-bottom: 20px;
}
.cta-final p{
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 56ch;
  margin-bottom: 36px;
}
.cta-final .hero-ctas{ margin-top: 0; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer{
  background: #5C0D17;
  color: rgba(255,255,255,.82);
  padding: 80px 0 32px;
  font-size: 14.5px;
}
.footer-grid{
  display: grid; gap: 40px;
}
@media (min-width: 700px){ .footer-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; } }

.footer .brand{ color: #fff; margin-bottom: 18px; }
.footer .brand-mark{ background: #fff; color: #5C0D17; }
.footer .brand-name span{ color: rgba(255,255,255,.6); }
.footer-about p{ color: rgba(255,255,255,.72); max-width: 36ch; line-height: 1.55; }
.footer h4{
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  margin-bottom: 18px;
}
.footer ul{ display: flex; flex-direction: column; gap: 10px; }
.footer ul a:hover{ color: #fff; }

.footer-social{ display: flex; gap: 10px; margin-top: 16px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  transition: background .2s;
}
.footer-social a:hover{ background: rgba(255,255,255,.22); }
.footer-social svg{ width: 18px; height: 18px; }

.footer-bottom{
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ── FAB WhatsApp ───────────────────────────────────────────────────── */
.fab{
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 20px 0 16px;
  border-radius: var(--r-pill);
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 4px 10px rgba(0,0,0,.1);
  font-weight: 600; font-size: 15px;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.fab:hover{ transform: translateY(-2px); background: var(--wa-deep); }
.fab svg{ width: 26px; height: 26px; }
.fab-label{ display: none; }
@media (min-width: 700px){
  .fab{ bottom: 28px; right: 28px; }
  .fab-label{ display: inline; }
}

/* ── Placeholders (striped SVG with monospace label) ────────────────── */
.ph{
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(135deg,
      var(--accent-soft) 0px, var(--accent-soft) 12px,
      var(--surface-2) 12px, var(--surface-2) 24px);
  overflow: hidden;
  isolation: isolate;
}
.ph::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,42,54,.05), rgba(12,42,54,.18));
}
.ph .ph-label{
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--ink);
  background: rgba(255,255,255,.85);
  padding: 6px 10px;
  border-radius: var(--r-xs);
  letter-spacing: -0.01em;
}
.ph .ph-dim{
  position: absolute;
  top: 16px; right: 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  color: rgba(12,42,54,.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* dark variant for hero, sobre */
.ph.is-dark{
  background:
    repeating-linear-gradient(135deg,
      rgba(12,42,54,.9) 0px, rgba(12,42,54,.9) 14px,
      rgba(12,42,54,.78) 14px, rgba(12,42,54,.78) 28px);
}
.ph.is-dark::before{
  background: linear-gradient(160deg, rgba(45,122,122,.25), rgba(12,42,54,.45));
}
.ph.is-dark .ph-label{ background: rgba(244,246,247,.95); }

/* ── Tweaks panel react-only ───────────────────────────────────────── */
#tweaks-root:empty{ display: none; }

/* ── Reduce motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
