/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── MOBILE MENU SCROLL LOCK ──────────────────────────────────────────
   Quando o menu mobile está aberto, travamos o scroll em TODOS os
   navegadores, inclusive Safari/iOS que ignora overflow:hidden no body.
   A técnica position:fixed preserva a posição de scroll via JS (script.js).
─────────────────────────────────────────────────────────────────────── */
body.menu-open {
  overflow: hidden;
  /* iOS Safari fix: position fixed impede scroll de fundo */
  position: fixed;
  width: 100%;
  /* top é definido via JS para manter a posição atual */
}

img { max-width: 100%; height: auto; display: block }
a { text-decoration: none; color: inherit }
ul { list-style: none }
button { cursor: pointer; border: none; background: none; font: inherit }
input, textarea, select { font: inherit }

:root {
  /* ── Cores ── */
  --black:      #111111;
  --charcoal:   #1C1C1C;
  --gold:       #C9A45D;
  --gold-light: #D9BC84;
  --cream:      #F5F1E8;
  --white:      #FFFFFF;
  --ink:        #111111;

  --gold-10:    rgba(201,164,93,.10);
  --gold-18:    rgba(201,164,93,.18);
  --gold-30:    rgba(201,164,93,.30);
  --ink-muted:  rgba(17,17,17,.50);
  --ink-faint:  rgba(17,17,17,.08);

  /* ── Tipografia ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --text-xs:   0.64rem;
  --text-sm:   0.75rem;
  --text-base: 0.875rem;
  --text-md:   1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;

  /* ── Layout ── */
  --max:  1240px;
  --pad:  clamp(1.5rem, 5vw, 4rem);

  /* ── Border radius ── */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-xl: 100px;

  /* ── Ritmo vertical ── */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-6:  3rem;
  --space-8:  4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* ── Easing ── */
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* ── Header ── */
  --topline-h: 36px;
  --nav-h:     64px;
  --header-h:  calc(var(--topline-h) + var(--nav-h));
}

/* Skip link */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  transform: translateY(-120%);
  transition: transform .18s ease;
  z-index: 1400;
}
.skip-link:focus { transform: translateY(0); }

::-webkit-scrollbar { width: 2px }
::-webkit-scrollbar-track { background: var(--cream) }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px }

/* ═══════════════════════════════════════
   SCROLL SNAP — apenas desktop (>900px)
═══════════════════════════════════════ */
body.snap-enabled {
  scroll-snap-type: y mandatory;
}

body.snap-enabled main > section,
body.snap-enabled main > .hero,
body.snap-enabled #home {
  scroll-snap-align: start;
}

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.tag::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section1 { color: var(--white) }
.section-title em { font-style: italic; color: var(--gold) }
.section-title--light { color: var(--white) }
.section-title--light em { color: var(--gold-light) }

/* ═══════════════════════════════════════
   BUTTONS  ← ALTERADO
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;          /* era: 0.75rem 1.875rem */
  border-radius: var(--r-xl);
  font-size: 0.78rem;             /* era: var(--text-xs) = 0.64rem */
  font-weight: 600;
  letter-spacing: 0.08em;        /* era: 0.1em */
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 0.9em; transition: transform 0.2s var(--ease) }
.btn:hover i { transform: translateX(4px) }

.btn-primary { background: var(--gold); color: var(--black); border: 1.5px solid var(--gold) }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,164,93,.25) }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.22) }
.btn-outline:hover { border-color: var(--gold); color: var(--gold) }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white); border: 1.5px solid rgba(255,255,255,.14) }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: var(--gold-30); color: var(--gold-light) }
.btn-cream { background: var(--white); color: var(--black); border: 1.5px solid rgba(255,255,255,.8) }
.btn-cream:hover { transform: translateY(-2px); background: var(--cream); box-shadow: 0 8px 24px rgba(17,17,17,.1) }

/* ═══════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 900;
}

main { padding-top: var(--header-h) }

/* ── TOPLINE ── */
.header-topline {
  background: var(--black);
  height: var(--topline-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height 0.38s var(--ease-out), opacity 0.3s var(--ease);
}
.header-topline__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-topline__left,
.header-topline__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.topline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,.36);
  transition: color 0.18s;
}
.topline-link i { font-size: 0.72rem; color: var(--gold); opacity: 0.7 }
.topline-link:hover { color: rgba(255,255,255,.72) }
.topline-link:hover i { opacity: 1 }

.topline-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.24);
  transition: color 0.18s;
}
.topline-social:hover { color: var(--gold) }

.topline-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color 0.18s;
}
.topline-phone:hover { color: var(--gold-light) }

.topline-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.08);
  display: inline-block;
  flex-shrink: 0;
}

/* ── NAV PRINCIPAL ── */
.header-nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--ink-faint);
  position: relative;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled .header-nav {
  box-shadow: 0 1px 32px rgba(17,17,17,.08);
}
.site-header.scrolled .header-topline {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.header-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
}

/* ── LOGO ── */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img { height: 36px; width: auto }

/* ── MENU CENTRAL ── */
.header-menu { display: flex; align-items: center; gap: 0; justify-content: center }

.header-link {
  position: relative;
  padding: 0.5rem 0.875rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17,17,17,.40);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.header-link::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0.875rem;
  right: 0.875rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.header-link:hover { color: var(--black) }
.header-link:hover::after { transform: scaleX(1) }
.header-link.active { color: var(--black) }
.header-link.active::after { transform: scaleX(1) }

/* ── ACTIONS ── */
.header-actions { display: flex; align-items: center; gap: var(--space-2); justify-content: flex-end }

/* header-cta  ← ALTERADO */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;        /* era: 0.5rem 1.25rem */
  border-radius: var(--r-xl);
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;             /* era: var(--text-xs) = 0.64rem */
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  border: 1.5px solid var(--black);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(17,17,17,.18);
}

/* ── HAMBURGER ── */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.4rem;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  border-radius: var(--r-md);
}
.hamburger-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.28s var(--ease-out);
  transform-origin: center;
}
.header-hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(3.75px) rotate(45deg) }
.header-hamburger.open .hamburger-bar:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg) }

/* ═══════════════════════════════════════
   MENU MOBILE
═══════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 850;
  background: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  animation: mobileIn 0.3s var(--ease-out);
}
@keyframes mobileIn {
  from { opacity: 0; transform: translateY(-10px) }
  to   { opacity: 1; transform: translateY(0) }
}
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-4) var(--pad) var(--space-8);
}

/* ═══════════════════════════════════════
   FLOATING ACTIONS — WhatsApp + Back to Top
═══════════════════════════════════════ */
.floating-actions {
  position: fixed;
  bottom: clamp(1rem, 4vw, 2.5rem);
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 1100;
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(0.625rem, 2vw, 1.25rem);
  align-items: center;
}

.float-whatsapp,
.back-to-top {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all 0.28s var(--ease);
  flex-shrink: 0;
}

.float-whatsapp {
  width: clamp(44px, 12vw, 60px);
  height: clamp(44px, 12vw, 60px);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  background: #25D366;
  color: var(--white);
  text-decoration: none;
}

.float-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
}

.float-whatsapp:active {
  transform: translateY(-2px);
}

.back-to-top {
  width: clamp(38px, 10vw, 50px);
  height: clamp(38px, 10vw, 50px);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  background: var(--gold);
  color: var(--black);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), background 0.2s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,164,93,.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.mobile-nav__links { flex: 1; border-top: 1px solid var(--ink-faint) }
.mobile-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--ink-faint);
  color: var(--black);
  transition: all 0.18s;
}
.mobile-link__num {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  min-width: 20px;
}
.mobile-link__text { font-size: var(--text-md); font-weight: 400; letter-spacing: 0.02em; flex: 1 }
.mobile-link i { font-size: 0.8rem; color: var(--ink-muted); transition: transform 0.18s var(--ease) }
.mobile-link:hover { padding-left: 0.5rem }
.mobile-link:hover i { transform: translateX(4px); color: var(--gold) }
.mobile-nav__footer { padding-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3) }
.mobile-nav__socials { display: flex; gap: var(--space-2); align-items: center }
.mobile-nav__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink-faint);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  transition: all 0.18s;
}
.mobile-nav__socials a:hover { border-color: var(--gold-30); color: var(--gold) }
.site-header:not(.scrolled) .mobile-nav { top: var(--header-h) }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(17,17,17,.92) 0%, rgba(17,17,17,.72) 55%, rgba(17,17,17,.44) 100%),
    url('../images/home.png');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-10) var(--pad);
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-6);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}
.hero__eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw + 1.5rem, 4.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--space-4);
  max-width: 14ch;
}
.hero__title em { font-style: italic; color: var(--gold-light) }
.hero__title strong { font-weight: 400; color: var(--white) }

.hero__desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,.60);
  line-height: 1.9;
  max-width: 50ch;
  margin-bottom: var(--space-6);
  font-weight: 300;
}
.hero__desc strong { color: rgba(255,255,255,.92); font-weight: 500 }
.hero__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; align-items: flex-start }

/* ═══════════════════════════════════════
   NUMBERS
═══════════════════════════════════════ */
.numbers {
  background: var(--cream);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--ink-faint);
}
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr) }
.number-item { text-align: center; padding: var(--space-3) var(--space-2); position: relative }
.number-item + .number-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--ink-faint);
}
.number-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.number-item em {
  font-style: normal;
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SOBRE
═══════════════════════════════════════ */
.sobre {
  padding: var(--space-10) 0;
  background: var(--white);
}
.sobre .container { width: 100% }
.sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center }
.sobre__images { position: relative; padding-bottom: var(--space-6) }
.sobre__img-main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4 }
.sobre__img-main img { width: 100%; height: 100%; object-fit: cover }
.sobre__img-float {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 50%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(17,17,17,.14);
}
.sobre__img-float img { width: 100%; height: 100%; object-fit: cover }
.sobre__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--black);
  color: var(--gold);
  border-radius: var(--r-md);
  padding: var(--space-2) var(--space-3);
  text-align: center;
}
.sobre__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}
.sobre__badge span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,164,93,.55);
  display: block;
  margin-top: 0.25rem;
}
.sobre__p {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: var(--space-3);
}
.sobre__p strong { color: var(--black); font-weight: 600 }

/* ═══════════════════════════════════════
   ESTRUTURA
═══════════════════════════════════════ */
.estrutura {
  background: var(--black);
  padding: var(--space-10) 0;
}
.estrutura .container { width: 100% }
.estrutura__header { margin-bottom: var(--space-6) }
.estrutura__header .tag { color: var(--gold) }
.estrutura__header .tag::before { background: var(--gold) }
.estrutura__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
}
.estrutura-card {
  background: var(--black);
  padding: var(--space-6) var(--space-4);
  transition: background 0.25s var(--ease);
  position: relative;
}
.estrutura-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.06);
}
.estrutura-card:hover { background: var(--charcoal) }
.estrutura-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-30);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  font-size: 1.125rem;
  color: var(--gold);
  transition: all 0.22s var(--ease);
}
.estrutura-card:hover .estrutura-card__icon { background: var(--gold); color: var(--black); border-color: var(--gold) }

.estrutura-card h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}
.estrutura-card p {
  font-size: var(--text-base);
  color: rgba(255,255,255,.38);
  line-height: 1.85;
}

/* ═══════════════════════════════════════
   MARCAS
═══════════════════════════════════════ */
.marcas {
  background: var(--cream);
  padding: var(--space-10) 0;
  overflow: hidden;
  position: relative;
}
.marcas > .container { width: 100%; position: relative; z-index: 1 }
.marcas__header { margin-bottom: var(--space-6) }
.marcas__exclusivas { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-6) }

.exclusiva {
  background: var(--white);
  border: 1px solid var(--ink-faint);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-4);
  position: relative;
  overflow: hidden;
  transition: all 0.28s var(--ease);
}
.exclusiva:hover {
  border-color: var(--gold-30);
  box-shadow: 0 20px 52px rgba(201,164,93,.1);
  transform: translateY(-3px);
}
.exclusiva__pill {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-10);
  border: 1px solid var(--gold-18);
  padding: 0.3rem 0.875rem;
  border-radius: var(--r-xl);
}
.exclusiva__logo { height: 48px; display: flex; align-items: center; margin-bottom: var(--space-3) }
.exclusiva__logo img { max-height: 44px; max-width: 140px; object-fit: contain; opacity: 0.85 }

.exclusiva h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-1);
  line-height: 1.3;
}
.exclusiva p {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.85;
}

/* Scroll rows de logos */
.marcas__all-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-3);
}
.marcas__scroll-row {
  position: relative;
  overflow: hidden;
  margin: var(--space-2) 0;
  height: 100px;
  display: flex;
  align-items: center;
}
.marcas__scroll-track { display: flex; gap: var(--space-2); min-width: max-content; animation: scrollRight 50s linear infinite; will-change: transform }
.marcas__scroll-row--left .marcas__scroll-track { animation: scrollLeft 50s linear infinite }
.marca-item {
  background: var(--white);
  border: 1px solid var(--ink-faint);
  border-radius: var(--r-md);
  padding: 0.875rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  min-width: 110px;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease);
}
.marca-item:hover { border-color: var(--gold-30) }
.marca-item img { max-height: 34px; max-width: 80px; object-fit: contain; opacity: 0.5; transition: opacity 0.2s }
.marca-item:hover img { opacity: 0.9 }
.marca-item span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@keyframes scrollRight { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
@keyframes scrollLeft { 0% { transform: translateX(-50%) } 100% { transform: translateX(0) } }

/* ═══════════════════════════════════════
   ATUAÇÃO
═══════════════════════════════════════ */
.atuacao { position: relative; display: flex; flex-direction: column; background: var(--white); overflow: hidden }
.atuacao__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden }
.atuacao__bg-img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0 }
.atuacao__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,.88) 0%, rgba(28,28,28,.78) 100%);
}
.atuacao__overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.28;
}
.atuacao__content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) 0 var(--space-8);
  text-align: center;
}
.atuacao__content-wrapper .container { max-width: 680px }
.atuacao__content-wrapper .tag { display: inline-block; color: var(--gold) }
.atuacao__content-wrapper .tag::before { background: var(--gold) }
.atuacao__content-wrapper .section-title { color: var(--white); margin-top: var(--space-2); margin-bottom: var(--space-4) }

.atuacao__lead {
  font-size: var(--text-base);
  color: rgba(255,255,255,.58);
  line-height: 1.9;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}

/* Cidades rolantes */
.scrolling-cities-section {
  position: relative;
  z-index: 2;
  background: var(--cream);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--ink-faint);
  overflow: hidden;
}
.scrolling-text-wrapper { width: 100%; overflow: hidden }
.scrolling-text {
  display: flex;
  gap: var(--space-3);
  white-space: nowrap;
  min-width: max-content;
  animation: scrollTextInfinite 15s linear infinite;
  will-change: transform;
}
.city-item {
  display: inline-block;
  font-size: var(--text-md);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--black);
  flex-shrink: 0;
  padding: 0 var(--space-2);
}
.city-separator {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  padding: 0 0.375rem;
}
@keyframes scrollTextInfinite { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* ═══════════════════════════════════════
   CLIENTES
═══════════════════════════════════════ */
.clientes {
  background: var(--white);
  padding: var(--space-10) 0;
}
.clientes .container { width: 100% }
.clientes__header { margin-bottom: var(--space-3) }

.clientes__desc {
  font-size: var(--text-base);
  color: var(--ink-muted);
  margin-bottom: var(--space-6);
  max-width: 60ch;
  line-height: 1.9;
}
.clientes__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}
.client-logo {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: background 0.22s var(--ease);
}
.client-logo:hover { background: var(--cream) }
.client-logo img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.38;
  transition: all 0.22s;
}
.client-logo:hover img { filter: none; opacity: 0.85 }

/* ═══════════════════════════════════════
   CTA CATÁLOGO
═══════════════════════════════════════ */
.catalogo-cta {
  background: var(--black);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.catalogo-cta::before {
  content: '';
  position: absolute;
  right: 10%; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,93,.07);
  pointer-events: none;
}
.catalogo-cta::after {
  content: '';
  position: absolute;
  right: 12%; top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,93,.12);
  pointer-events: none;
}
.catalogo-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}
.catalogo-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.catalogo-cta p {
  color: rgba(255,255,255,.42);
  font-size: var(--text-base);
  line-height: 1.85;
  max-width: 52ch;
  font-weight: 300;
}
.catalogo-cta__actions { display: flex; flex-direction: column; gap: var(--space-2); flex-shrink: 0 }

/* ═══════════════════════════════════════
   CONTATO
═══════════════════════════════════════ */
.contato { background: var(--cream); padding: var(--space-10) 0 }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato__map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contato__map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.dado {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--ink-faint);
  color: inherit;
  transition: all 0.18s;
}
.dado:hover .dado__icon { background: var(--gold); color: var(--black); border-color: var(--gold) }
.dado__icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--ink-faint);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.18s;
}
.dado__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.dado__val {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--black);
  line-height: 1.65;
}
.social-btn:hover {
  border-color: var(--gold-30) !important;
  color: var(--gold) !important;
  background: var(--gold-10) !important;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--black); color: rgba(255,255,255,.4); padding: var(--space-10) 0 0 }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--space-3) }
.footer__logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.8 }
.footer__tagline {
  font-size: var(--text-base);
  color: rgba(255,255,255,.28);
  line-height: 1.85;
  max-width: 28ch;
  margin-bottom: var(--space-4);
  font-weight: 300;
}
.footer__socials { display: flex; gap: 0.5rem }
.footer__social {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.32);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer__social:hover { border-color: var(--gold-30); color: var(--gold); background: rgba(201,164,93,.06) }
.footer__col h5 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.20);
  margin-bottom: var(--space-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.875rem }
.footer__col a {
  font-size: var(--text-base);
  color: rgba(255,255,255,.36);
  transition: color 0.15s;
  font-weight: 300;
}
.footer__col a:hover { color: var(--gold) }
.footer__bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.footer__bottom p { font-size: var(--text-sm); color: rgba(255,255,255,.18) }
.footer__bottom a { color: rgba(255,255,255,.26); transition: color 0.15s }
.footer__bottom a:hover { color: var(--gold) }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.whatsapp-float { display: none }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .estrutura__grid { grid-template-columns: repeat(2, 1fr) }
  .clientes__logos { grid-template-columns: repeat(3, 1fr) }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8) }
}

@media (max-width: 900px) {
  .header-menu { display: none }
  .header-hamburger { display: flex }
  .header-cta { display: none }

  :root { --header-h: calc(var(--topline-h) + var(--nav-h)) }

  .hero__container { padding-top: var(--space-6); padding-bottom: var(--space-6) }
  .hero__actions {
    flex-direction: row;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .hero__actions .btn {
    padding: 1rem 2rem;
    justify-content: center;
  }
  .sobre__grid, .catalogo-cta__inner { grid-template-columns: 1fr }
  .marcas__exclusivas { grid-template-columns: 1fr }
  .numbers__grid { grid-template-columns: repeat(2, 1fr) }
  .number-item:nth-child(3)::before { display: none }
  .clientes__logos { grid-template-columns: repeat(2, 1fr) }
  .catalogo-cta__actions { align-items: flex-start }

  .header-topline__left .topline-link:last-child { display: none }
  .header-topline__left .topline-divider { display: none }
  .header-nav__inner { grid-template-columns: 1fr auto }

  .contato__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contato__map-wrapper {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .estrutura__grid { grid-template-columns: 1fr }
  .footer__grid { grid-template-columns: 1fr }
  .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem) }
  .clientes__logos { grid-template-columns: repeat(2, 1fr) }

  .header-topline { display: none }
  :root { --header-h: var(--nav-h) }

  .header-nav__inner { grid-template-columns: 1fr auto }

  .hero__actions {
    flex-direction: column;
    gap: 1rem;
    max-width: 360px;
  }
  .hero__actions .btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 0.7rem;
    justify-content: center;
    flex-shrink: 0;
  }
  .catalogo-cta__actions {
    align-items: center;
    justify-content: center;
  }

  .contato__map-wrapper {
    height: 260px;
  }

}

/* ── iPad Pro 11" (1024px) ──────────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero__actions .btn {
    padding: 1.25rem 3rem;
    font-size: 0.78rem;
  }
}

/* ── Desktop Grande (1440px) ─────────────────────────────────────────── */
@media (min-width: 1441px) {
  .hero__actions .btn {
    padding: 1.25rem 3.5rem;
    font-size: 0.82rem;
  }
}

/* AOS */
[data-aos] { transition-timing-function: var(--ease-out) !important }