/* =====================================================================
   GOLD BOX — Landing Page 2026
   Estúdio criativo | Design premium, Instagram e Landing Pages
   CSS único, sem dependências externas, mobile-first e responsivo.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. FONTE
   --------------------------------------------------------------------- */
@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/manrope.woff2") format("woff2-variations");
}

/* ---------------------------------------------------------------------
   2. TOKENS — paleta oficial Gold Box
   --------------------------------------------------------------------- */
:root {
  /* Pretos */
  --black: #020101;          /* Preto absoluto — fundo principal */
  --black-2: #080808;
  --black-3: #120d09;        /* Preto premium — sombras e elementos escuros */
  --black-4: #1b1a18;

  /* Dourados */
  --gold-1: #7b5a22;
  --gold-2: #987030;         /* Dourado premium — ícones e detalhes */
  --gold-3: #b78a3d;         /* Dourado de destaque */
  --gold-4: #ceae71;         /* Dourado champagne — destaques e gradientes */
  --gold-5: #e4c987;
  --gold-6: #f0d79e;

  /* Neutros */
  --brown: #2e2215;          /* Marrom grafite — profundidade e volumes */
  --bronze: #554227;         /* Bronze escuro — detalhes metálicos escuros */
  --grey: #686663;           /* Cinza quente — textos secundários */
  --grey-2: #a8a39a;
  --champagne: #e2ddd1;      /* Champagne — texto principal */
  --ivory: #f6f2eb;          /* Marfim iluminado */
  --taupe: #c9bdaa;          /* Taupe de transição */

  /* Derivados */
  --line-dark: rgba(206, 174, 113, 0.16);
  --line-light: rgba(46, 34, 21, 0.16);
  --grad-gold: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-5) 45%, var(--gold-3) 72%, var(--gold-6) 100%);
  --grad-gold-soft: linear-gradient(135deg, var(--gold-1), var(--gold-4));
  --shadow-sm: 0 6px 18px rgba(2, 1, 1, 0.35);
  --shadow-md: 0 18px 44px rgba(2, 1, 1, 0.42);
  --shadow-lg: 0 34px 86px rgba(2, 1, 1, 0.5);
  --focus: #f0d79e;

  /* Layout */
  --content: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(72px, 8.5vw, 138px);
  --radius: 18px;
  --radius-lg: 26px;

  /* Tipografia */
  --font-sans: "Manrope Variable", Manrope, "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}

/* ---------------------------------------------------------------------
   3. RESET / BASE
   --------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--black);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  /* blindagem contra qualquer vazamento lateral no celular.
     `clip` não quebra o position:sticky do header; `hidden` é o fallback. */
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  background: var(--black);
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: clamp(15px, 0.55vw + 14px, 17px);
  font-weight: 400;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

h1, h2, h3, h4, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

p, h1, h2, h3, h4, blockquote, li, summary { overflow-wrap: break-word; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ivory);
}

em { font-style: normal; }

::selection { background: var(--gold-5); color: var(--black); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px; left: 10px;
  padding: 12px 18px;
  transform: translateY(-200%);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------------------------------------------------------------------
   4. UTILITÁRIOS DE SEÇÃO
   --------------------------------------------------------------------- */
.section {
  position: relative;
  padding: var(--section-pad) var(--gutter);
  max-width: 100%;
}

.section > *,
.footer-inner,
.final-content { margin-inline: auto; max-width: var(--content); }

/* Texto com preenchimento dourado (gradiente) */
.gold-text,
.section em,
.hero em,
.final-cta em,
.stat strong,
.process-list > li > span,
.founder-text em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-light em {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--gold-1);
}

/* Seções claras (contraste alternado) */
.section-light {
  background: linear-gradient(180deg, var(--ivory) 0%, #efe9de 100%);
  color: var(--brown);
}
.section-light h2,
.section-light h3 { color: var(--black-3); }
.section-light p { color: #4a3b2b; }
.section-light em {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--gold-1);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-4);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow span {
  flex: none;
  width: 26px; height: 1px;
  background: var(--grad-gold);
}
.eyebrow-dark { color: var(--gold-1); }

.section-heading { margin-bottom: clamp(38px, 5vw, 66px); }
.section-heading h2 { font-size: clamp(1.9rem, 4.1vw, 3.1rem); }
.heading-split {
  display: grid;
  gap: clamp(20px, 3vw, 46px);
  align-items: end;
}
.heading-split > p { font-size: 1rem; color: var(--grey-2); }
.section-light .heading-split > p { color: #574734; }

.card-kicker {
  color: var(--gold-4);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.card-index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-3);
}

/* ---------------------------------------------------------------------
   5. BOTÕES E LINKS
   --------------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  will-change: transform;
}
.button span { font-size: 1em; line-height: 1; }
.btn-ic { width: 18px; height: 18px; flex: none; }

.button-primary {
  color: var(--black);
  background: var(--grad-gold);
  box-shadow: 0 14px 34px rgba(152, 112, 48, 0.34);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(183, 138, 61, 0.44); }

.button-secondary {
  color: var(--champagne);
  border-color: rgba(206, 174, 113, 0.34);
  background: rgba(18, 13, 9, 0.6);
}
.button-secondary:hover { border-color: var(--gold-4); background: rgba(46, 34, 21, 0.7); transform: translateY(-2px); }

.button-dark {
  color: var(--ivory);
  background: var(--black-3);
  border-color: rgba(206, 174, 113, 0.28);
}
.button-dark:hover { background: var(--brown); transform: translateY(-2px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(206, 174, 113, 0.4);
  color: var(--gold-4);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}
.text-link:hover { color: var(--gold-6); border-color: var(--gold-6); }

/* ---------------------------------------------------------------------
   6. PROGRESSO DE ROLAGEM
   --------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-gold);
}

/* ---------------------------------------------------------------------
   7. CABEÇALHO
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(2, 1, 1, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(2, 1, 1, 0.93);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  max-width: var(--content);
  margin-inline: auto;
  padding: 12px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-lockup img {
  width: clamp(42px, 5vw, 56px);
  height: auto;
  border-radius: 50%;
}
.brand-lockup span { display: grid; gap: 2px; }
.brand-lockup strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ivory);
}
.brand-lockup small {
  font-size: 0.53rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  color: var(--gold-3);
}

.desktop-nav {
  display: none;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
}
.desktop-nav a {
  position: relative;
  padding: 6px 2px;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--grey-2);
  transition: color 180ms ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-gold);
  transition: transform 220ms ease;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--gold-5); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 12px;
  color: var(--black);
  background: var(--grad-gold);
  font-size: 0.82rem;
  font-weight: 780;
  transition: transform 180ms ease, box-shadow 200ms ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(183, 138, 61, 0.36); }

/* Menu mobile */
.mobile-menu { position: relative; justify-self: end; }
.mobile-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid rgba(206, 174, 113, 0.3);
  border-radius: 12px;
  background: rgba(18, 13, 9, 0.75);
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.mobile-menu > summary::-webkit-details-marker { display: none; }
.menu-bars { display: grid; gap: 4px; width: 16px; }
.menu-bars i { height: 1.5px; background: var(--gold-4); border-radius: 2px; transition: transform 220ms ease, opacity 200ms ease; }
.mobile-menu[open] .menu-bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mobile-menu[open] .menu-bars i:nth-child(2) { opacity: 0; }
.mobile-menu[open] .menu-bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu > nav {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: min(78vw, 268px);
  padding: 10px;
  display: grid;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.97);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.mobile-menu > nav a {
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--champagne);
}
.mobile-menu > nav a:hover { background: rgba(206, 174, 113, 0.1); color: var(--gold-5); }

/* ---------------------------------------------------------------------
   8. HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  padding: clamp(52px, 8vw, 104px) var(--gutter) clamp(56px, 7vw, 96px);
  display: grid;
  gap: clamp(44px, 6vw, 64px);
  align-items: center;
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(123, 90, 34, 0.24), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--black-3) 55%, var(--black) 100%);
}
.hero > .hero-text,
.hero > .hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: -18%;
  right: -22%;
  width: min(760px, 105vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 138, 61, 0.22), rgba(123, 90, 34, 0.08) 45%, transparent 68%);
  pointer-events: none;
}

.hero-text { max-width: 660px; }
.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 5.6vw, 3.35rem);
  letter-spacing: -0.022em;
}
.hero-lead {
  max-width: 58ch;
  margin-bottom: 30px;
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  color: var(--grey-2);
}
.hero-lead strong { color: var(--champagne); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-actions .button { flex: 1 1 240px; }

.hero-assurances {
  display: grid;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--grey-2);
}
.hero-assurances li { display: flex; align-items: center; gap: 10px; }
.hero-assurances li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  border: 1px solid rgba(206, 174, 113, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-5) 0 2.5px, transparent 3px);
}

/* --- Composição de mockups (sem arco 3D e sem faixa sobreposta) --- */
.hero-visual {
  position: relative;
  width: 100%;
  container-type: inline-size;
}
.hero-visual-stage {
  position: relative;
  width: 100%;
  /* proporção estável: nada "estoura" a tela no celular */
  aspect-ratio: 10 / 9;
  min-height: 260px;
  max-height: 640px;
  transform-style: preserve-3d;
  transition: transform 320ms ease;
}

.desktop-device {
  position: absolute;
  top: 6%;
  left: 0;
  width: 82%;
  border: 1px solid rgba(206, 174, 113, 0.24);
  border-radius: 16px;
  background: linear-gradient(160deg, #16110c, var(--black-2));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.device-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(206, 174, 113, 0.14);
  background: rgba(2, 1, 1, 0.6);
}
.device-top i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(206, 174, 113, 0.42);
}
.device-top small {
  margin-left: auto;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.device-screen { padding: 6% 7% 7%; }

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9%;
}
.mini-mark { width: 30px; height: 30px; flex: none; }
.mini-nav i {
  width: 34px; height: 5px;
  border-radius: 3px;
  background: rgba(206, 174, 113, 0.3);
}

.mini-hero { display: grid; gap: 7px; }
.mini-hero span {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-4);
}
.mini-hero strong {
  font-family: var(--font-display);
  font-size: clamp(13px, 3.4cqw, 30px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.mini-hero p { font-size: clamp(7px, 1.2cqw, 11px); color: var(--grey); }
.mini-hero b {
  justify-self: start;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mini-metrics {
  /* largura limitada para os 3 itens ficarem na área visível do mockup,
     sem serem cortados ao meio pelo celular sobreposto */
  width: 64%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 9%;
  padding-top: 7%;
  border-top: 1px solid rgba(206, 174, 113, 0.13);
}
.mini-metrics span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--grey);
}

.phone-device {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  max-width: 250px;
  padding: 10px 9px 14px;
  border: 1px solid rgba(206, 174, 113, 0.3);
  border-radius: 26px;
  background: linear-gradient(165deg, #1d150d, var(--black));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(2, 1, 1, 0.9);
}
.phone-speaker {
  width: 30%;
  height: 4px;
  margin: 0 auto 11px;
  border-radius: 4px;
  background: rgba(206, 174, 113, 0.24);
}
.phone-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 5px 10px;
}
.phone-profile .mini-mark { width: 26px; height: 26px; }
.phone-profile span { display: grid; gap: 1px; min-width: 0; }
.phone-profile strong {
  font-size: clamp(8px, 1.4cqw, 12px);
  font-weight: 750;
  color: var(--ivory);
}
.phone-profile small { font-size: clamp(6px, 1cqw, 9px); color: var(--grey); }

.phone-stories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 5px 11px;
}
.phone-stories i {
  aspect-ratio: 1;
  border: 1.4px solid rgba(206, 174, 113, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(46, 34, 21, 0.9), var(--black));
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 0 5px;
}
.phone-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid rgba(206, 174, 113, 0.14);
  background: linear-gradient(145deg, rgba(240, 215, 158, 0.05), transparent), var(--black-3);
  color: var(--gold-4);
  font-size: clamp(5.5px, 0.95cqw, 9px);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.phone-grid span:nth-child(2),
.phone-grid span:nth-child(5) {
  color: var(--black);
  background: var(--grad-gold);
  border-color: transparent;
}

/* Marca GB flutuante (substitui a antiga logo esticada) */
.gb-mark-float {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 6%;
  width: clamp(56px, 12cqw, 96px);
  aspect-ratio: 1;
  filter: drop-shadow(0 16px 34px rgba(123, 90, 34, 0.45));
  animation: floatY 7s ease-in-out infinite;
}
.gb-mark-float svg { width: 100%; height: 100%; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------------------------------------------------------------------
   9. FAIXA DE ENTREGAS
   --------------------------------------------------------------------- */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black-2);
}
.proof-strip > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: clamp(20px, 3vw, 34px) clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.proof-strip > div:nth-child(2n) { border-right: 0; }
.proof-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
.proof-strip span { color: var(--gold-3); font-size: 0.72rem; font-weight: 800; }
.proof-strip strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--champagne);
}

/* ---------------------------------------------------------------------
   10. QUEM SOMOS
   --------------------------------------------------------------------- */
.about {
  background:
    radial-gradient(70% 60% at 15% 10%, rgba(85, 66, 39, 0.28), transparent 62%),
    var(--black);
}
.about-grid {
  display: grid;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}
.about-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 4vw, 2.9rem);
}
.about-copy > p {
  margin-bottom: 16px;
  color: var(--grey-2);
}
.about-copy > p strong { color: var(--champagne); font-weight: 700; }

.about-pillars {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.about-pillars li {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(46, 34, 21, 0.4), rgba(8, 8, 8, 0.6));
}
.about-pillars span { color: var(--gold-3); font-size: 0.7rem; line-height: 1.9; }
.about-pillars strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
}
.about-pillars p { font-size: 0.88rem; color: var(--grey-2); }

.founder-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(206, 174, 113, 0.26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(123, 90, 34, 0.34), transparent 58%),
    linear-gradient(165deg, var(--black-4), var(--black));
  box-shadow: var(--shadow-md);
}
.founder-mark {
  position: absolute;
  z-index: 0;
  right: -14%;
  bottom: -12%;
  width: 58%;
  opacity: 0.16;
  pointer-events: none;
}
.founder-mark svg { width: 100%; height: auto; aspect-ratio: 200/210; }
/* :not() é essencial — sem ele a marca perderia o position:absolute */
.founder-card > *:not(.founder-mark) { position: relative; z-index: 1; }

.founder-eyebrow {
  margin-bottom: 8px;
  color: var(--gold-4);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.24em;
}
.founder-card h3 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.12em;
  color: var(--ivory);
}
.founder-role {
  margin: 10px 0 20px;
  max-width: 30ch;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}
.founder-text {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.98rem;
  color: var(--grey-2);
}
.founder-text em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}
.founder-tags li {
  padding: 7px 14px;
  border: 1px solid rgba(206, 174, 113, 0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-4);
}

/* ---------------------------------------------------------------------
   11. NÚMEROS
   --------------------------------------------------------------------- */
.stats { padding-block: clamp(48px, 6vw, 84px); background: var(--black-2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.stat {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(46, 34, 21, 0.32), rgba(2, 1, 1, 0.5));
}
.stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat p { font-size: 0.83rem; color: var(--grey-2); }

/* ---------------------------------------------------------------------
   12. PERCEPÇÃO
   --------------------------------------------------------------------- */
.impact-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
}
.impact-card {
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(46, 34, 21, 0.16); }
.impact-card .card-index { color: var(--gold-1); }
.impact-card .card-kicker { color: var(--gold-1); margin: 14px 0 10px; }
.impact-card h3 { margin-bottom: 10px; font-size: clamp(1.15rem, 2.4vw, 1.5rem); }
.impact-card p { font-size: 0.92rem; }

.impact-card-dark {
  border-color: rgba(206, 174, 113, 0.24);
  background: linear-gradient(160deg, var(--black-3), var(--black));
  color: var(--grey-2);
}
.impact-card-dark h3 { color: var(--ivory); }
.impact-card-dark p { color: var(--grey-2); }
.impact-card-dark .card-index,
.impact-card-dark .card-kicker { color: var(--gold-4); }

/* ---------------------------------------------------------------------
   13. SERVIÇOS
   --------------------------------------------------------------------- */
.services { background: var(--black); }
.services-grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(46, 34, 21, 0.34), rgba(8, 8, 8, 0.72));
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}
.service-card:hover {
  border-color: rgba(206, 174, 113, 0.44);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
}
.service-card > div { flex: 1; }
.service-card h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
}
.service-card p { font-size: 0.9rem; color: var(--grey-2); }
.service-card > a {
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--gold-4);
  border-bottom: 1px solid rgba(206, 174, 113, 0.34);
  padding-bottom: 3px;
  transition: color 180ms ease, border-color 180ms ease;
}
.service-card > a:hover { color: var(--gold-6); border-color: var(--gold-6); }

.service-featured,
.service-lp {
  border-color: rgba(206, 174, 113, 0.4);
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(123, 90, 34, 0.4), transparent 58%),
    linear-gradient(165deg, var(--black-4), var(--black));
}

/* ---------------------------------------------------------------------
   14. LANDING PAGES
   --------------------------------------------------------------------- */
.landing-pages {
  display: grid;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.landing-pages > * { max-width: 100%; }
.lp-copy h2 { margin-bottom: 18px; font-size: clamp(1.85rem, 4vw, 2.85rem); }
.lp-copy > p { margin-bottom: 30px; }

.benefit-list { display: grid; gap: 18px; margin-bottom: 34px; }
.benefit-list li { display: flex; gap: 16px; }
.benefit-list span {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
}
.benefit-list h3 { margin-bottom: 4px; font-size: 1.05rem; }
.benefit-list p { font-size: 0.9rem; }

/* Showcase de dispositivos */
.lp-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 8;
  max-height: 560px;
  container-type: inline-size;
  transition: transform 320ms ease;
}
.showcase-laptop {
  position: absolute;
  top: 4%;
  left: 0;
  width: 84%;
  border: 1px solid rgba(46, 34, 21, 0.22);
  border-radius: 14px;
  background: linear-gradient(160deg, #17110b, var(--black));
  box-shadow: 0 30px 70px rgba(46, 34, 21, 0.34);
  overflow: hidden;
}
.showcase-browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(206, 174, 113, 0.14);
  background: rgba(2, 1, 1, 0.55);
}
.showcase-browser i { width: 6px; height: 6px; border-radius: 50%; background: rgba(206, 174, 113, 0.4); }
.showcase-browser small { margin-left: auto; font-size: 8px; letter-spacing: 0.14em; color: var(--grey); }
.showcase-page { display: grid; gap: 8px; padding: 8% 8% 10%; }
.showcase-page p { font-size: 8px; font-weight: 800; letter-spacing: 0.2em; color: var(--gold-4); }
.showcase-page strong {
  font-family: var(--font-display);
  font-size: clamp(12px, 3.2cqw, 28px);
  font-weight: 600;
  line-height: 1.04;
  color: var(--ivory);
}
.showcase-page span { font-size: clamp(7px, 1.2cqw, 11px); color: var(--grey); }
.showcase-page b {
  justify-self: start;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.showcase-tablet {
  position: absolute;
  right: 0;
  top: 26%;
  width: 30%;
  display: grid;
  gap: 7px;
  padding: 14px 12px;
  border: 1px solid rgba(206, 174, 113, 0.26);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--brown), var(--black));
  box-shadow: 0 24px 56px rgba(46, 34, 21, 0.36);
}
.showcase-tablet span { font-size: 7px; font-weight: 800; letter-spacing: 0.2em; color: var(--gold-4); }
.showcase-tablet strong {
  font-family: var(--font-display);
  font-size: clamp(10px, 2.4cqw, 20px);
  font-weight: 600;
  line-height: 1.06;
  color: var(--ivory);
}
.showcase-tablet i { height: 3px; border-radius: 3px; background: var(--grad-gold); width: 60%; }

.showcase-phone {
  position: absolute;
  left: 12%;
  bottom: 0;
  width: 27%;
  max-width: 160px;
  display: grid;
  gap: 8px;
  padding: 16px 13px;
  border: 1px solid rgba(206, 174, 113, 0.3);
  border-radius: 20px;
  background: linear-gradient(165deg, var(--black-3), var(--black));
  box-shadow: 0 26px 60px rgba(2, 1, 1, 0.44);
}
.showcase-phone span { font-size: 6.5px; font-weight: 800; letter-spacing: 0.18em; color: var(--gold-4); }
.showcase-phone strong {
  font-family: var(--font-display);
  font-size: clamp(10px, 2.2cqw, 18px);
  font-weight: 600;
  line-height: 1.06;
  color: var(--ivory);
}
.showcase-phone b {
  justify-self: start;
  padding: 7px 11px;
  border-radius: 7px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* ---------------------------------------------------------------------
   15. ANTES E DEPOIS
   --------------------------------------------------------------------- */
.transformation { background: var(--black-2); }
.comparison {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: center;
}
.comparison-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(27, 26, 24, 0.9), var(--black));
}
.comparison-after {
  border-color: rgba(206, 174, 113, 0.42);
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(123, 90, 34, 0.34), transparent 60%),
    linear-gradient(165deg, var(--black-4), var(--black));
}
.comparison-label { display: grid; gap: 3px; margin-bottom: 18px; }
.comparison-label span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--grey-2);
}
.comparison-after .comparison-label span { color: var(--gold-4); }
.comparison-label small { font-size: 0.78rem; color: var(--grey-2); }

.profile-demo {
  padding: 15px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(2, 1, 1, 0.65);
}
.profile-demo-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.profile-demo-head i {
  flex: none;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--black-3);
  color: var(--grey);
  font-size: 0.8rem;
  font-weight: 800;
  font-style: normal;
}
.comparison-after .profile-demo-head i { background: var(--grad-gold); color: var(--black); border-color: transparent; }
.profile-demo-head span { display: grid; min-width: 0; }
.profile-demo-head strong { font-size: 0.82rem; font-weight: 750; color: var(--champagne); }
.profile-demo-head small { font-size: 0.66rem; color: var(--grey); }
.profile-demo-bio { margin-bottom: 12px; font-size: 0.72rem; line-height: 1.5; color: var(--grey); }
.profile-demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.profile-demo-grid i {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 1px solid var(--line-dark);
  background: var(--black-3);
  color: var(--grey);
  font-size: 6.5px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.comparison-after .profile-demo-grid i:nth-child(odd) { background: var(--grad-gold); color: var(--black); border-color: transparent; }
.comparison-after .profile-demo-grid i { color: var(--gold-4); }

.comparison-card > ul { display: grid; gap: 8px; margin-top: 18px; }
.comparison-card > ul li {
  display: flex;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--grey-2);
}
.comparison-card > ul li::before { content: "—"; color: var(--gold-3); }

.comparison-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--grey);
}
.comparison-bridge i { font-style: normal; color: var(--gold-3); font-size: 1.1rem; }
.comparison-bridge strong { color: var(--gold-4); }

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(30px, 4vw, 50px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(206, 174, 113, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(46, 34, 21, 0.55), rgba(2, 1, 1, 0.6));
}
.inline-cta p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  color: var(--ivory);
}
.inline-cta a {
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 780;
  transition: transform 180ms ease;
}
.inline-cta a:hover { transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   16. PROJETOS
   --------------------------------------------------------------------- */
.projects-grid { display: grid; gap: clamp(18px, 2.5vw, 26px); }
.project-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: 0 20px 48px rgba(46, 34, 21, 0.18);
  transition: transform 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}
.project-card:hover { box-shadow: 0 28px 62px rgba(46, 34, 21, 0.28); }

.project-visual {
  position: relative;
  min-height: clamp(260px, 44vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  /* substitua por: background-image: url("assets/photos/sua-foto.jpg"); background-size: cover; */
  background-size: cover;
  background-position: center;
}
.project-food    { --pj: radial-gradient(120% 90% at 20% 10%, rgba(183, 138, 61, 0.5), transparent 60%); }
.project-authority { --pj: radial-gradient(120% 90% at 80% 10%, rgba(85, 66, 39, 0.68), transparent 62%); }
.project-beauty  { --pj: radial-gradient(120% 90% at 50% 0%, rgba(206, 174, 113, 0.38), transparent 62%); }
.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pj), linear-gradient(180deg, rgba(2, 1, 1, 0.15), rgba(2, 1, 1, 0.88));
}
.project-visual > * { position: relative; z-index: 1; }
.project-visual span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-5);
}
.project-visual strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--ivory);
}

.project-caption {
  display: flex;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 24px);
  background: var(--ivory);
}
.project-caption span { color: var(--gold-1); font-size: 0.72rem; font-weight: 800; }
.project-caption h3 { font-size: 1.02rem; color: var(--black-3); }
.project-caption small { font-size: 0.72rem; letter-spacing: 0.1em; color: #6b5a45; }

/* ---------------------------------------------------------------------
   17. DIFERENCIAIS
   --------------------------------------------------------------------- */
.differentials { background: var(--black); }
.diff-grid { display: grid; gap: clamp(14px, 2vw, 22px); }
.diff-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(27, 26, 24, 0.85), rgba(2, 1, 1, 0.75));
  transition: transform 260ms ease, border-color 260ms ease;
  will-change: transform;
}
.diff-card:hover { border-color: rgba(206, 174, 113, 0.4); }
.diff-card > span { display: block; margin-bottom: 14px; color: var(--gold-3); font-size: 0.9rem; }
.diff-card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.diff-card p { font-size: 0.89rem; color: var(--grey-2); }

/* ---------------------------------------------------------------------
   18. PROCESSO
   --------------------------------------------------------------------- */
.process {
  display: grid;
  gap: clamp(34px, 4.5vw, 60px);
  background: var(--black-2);
}
.process > * { max-width: 100%; }
.process-intro h2 { margin-bottom: 18px; font-size: clamp(1.85rem, 4vw, 2.7rem); }
.process-intro > p { margin-bottom: 24px; color: var(--grey-2); }

.process-list { display: grid; gap: 2px; }
.process-list li {
  display: flex;
  gap: 18px;
  padding: clamp(18px, 2.6vw, 26px) 0;
  border-bottom: 1px solid var(--line-dark);
}
.process-list li:first-child { border-top: 1px solid var(--line-dark); }
.process-list span {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-list h3 { margin-bottom: 5px; font-size: 1.12rem; }
.process-list p { font-size: 0.9rem; color: var(--grey-2); }

/* ---------------------------------------------------------------------
   19. PLANOS
   --------------------------------------------------------------------- */
.plans-grid { display: grid; gap: clamp(18px, 2.5vw, 26px); align-items: stretch; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  transition: transform 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}
.plan-card:hover { box-shadow: 0 24px 56px rgba(46, 34, 21, 0.18); }
.plan-top .card-kicker { color: var(--gold-1); }
.plan-top h3 { margin: 10px 0 6px; font-size: clamp(1.3rem, 2.8vw, 1.7rem); }
.plan-hint { font-size: 0.82rem; color: #6b5a45; }
.plan-list { display: grid; gap: 10px; flex: 1; }
.plan-list li {
  display: flex;
  gap: 10px;
  font-size: 0.89rem;
  color: #4a3b2b;
}
.plan-list li::before { content: "◆"; flex: none; color: var(--gold-2); font-size: 0.6rem; line-height: 1.9; }
.plan-card .button { width: 100%; }

.plan-featured {
  border-color: rgba(206, 174, 113, 0.5);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(123, 90, 34, 0.42), transparent 60%),
    linear-gradient(165deg, var(--black-4), var(--black));
  box-shadow: 0 28px 64px rgba(46, 34, 21, 0.3);
}
.plan-featured h3 { color: var(--ivory); }
.plan-featured .plan-hint { color: var(--grey-2); }
.plan-featured .plan-list li { color: var(--grey-2); }
.plan-featured .plan-list li::before { color: var(--gold-4); }
.plan-featured .card-kicker { color: var(--gold-4); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: clamp(24px, 3.2vw, 34px);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.plans-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.88rem;
  color: #574734;
}

/* ---------------------------------------------------------------------
   20. DEPOIMENTOS
   --------------------------------------------------------------------- */
.testimonials { background: var(--black); }
.testimonials .heading-split a { color: var(--gold-4); border-bottom: 1px solid rgba(206, 174, 113, 0.4); }
.testimonials-grid { display: grid; gap: clamp(16px, 2.2vw, 24px); }
.testimonials-grid article {
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(46, 34, 21, 0.34), rgba(8, 8, 8, 0.7));
  transition: transform 260ms ease, border-color 260ms ease;
  will-change: transform;
}
.testimonials-grid article:hover { border-color: rgba(206, 174, 113, 0.42); }
.quote-number {
  display: block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-3);
}
.testimonials blockquote {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.3;
  color: var(--ivory);
}
.testimonials article > p {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--grey-2);
}

/* ---------------------------------------------------------------------
   21. COBERTURA / SEO LOCAL
   --------------------------------------------------------------------- */
.coverage-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.2vw, 24px);
}
@media (min-width: 620px) { .coverage-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .coverage-steps { grid-template-columns: repeat(4, 1fr); } }
.coverage-steps li {
  display: flex;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 26px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}
.coverage-steps > li > span {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--grad-gold);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 800;
}
.coverage-steps h3 { margin-bottom: 5px; font-size: 1.05rem; }
.coverage-steps p { font-size: 0.89rem; }

.coverage-note {
  max-width: 78ch;
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: clamp(20px, 2.6vw, 28px);
  border-top: 1px solid var(--line-light);
  font-size: 0.92rem;
  color: #574734;
}

/* ---------------------------------------------------------------------
   22. FAQ
   --------------------------------------------------------------------- */
.faq {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  background: var(--black-2);
}
.faq > * { max-width: 100%; }
.faq-intro h2 { margin-bottom: 16px; font-size: clamp(1.85rem, 4vw, 2.7rem); }
.faq-intro > p { margin-bottom: 26px; color: var(--grey-2); }

.faq-list { display: grid; }
.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}
.faq-list details:first-child { border-top: 1px solid var(--line-dark); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h3 {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--champagne);
  transition: color 200ms ease;
}
.faq-list summary:hover h3,
.faq-list details[open] summary h3 { color: var(--gold-5); }
.faq-list summary > span {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid rgba(206, 174, 113, 0.36);
  border-radius: 50%;
}
.faq-list summary > span::before,
.faq-list summary > span::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  transform: translate(-50%, -50%);
  background: var(--gold-4);
  transition: transform 240ms ease, opacity 200ms ease;
}
.faq-list summary > span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary > span::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.faq-list details > p {
  padding: 0 4px 22px;
  max-width: 74ch;
  font-size: 0.92rem;
  color: var(--grey-2);
}

/* ---------------------------------------------------------------------
   23. CTA FINAL
   --------------------------------------------------------------------- */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  padding: clamp(72px, 9vw, 140px) var(--gutter);
  background:
    radial-gradient(80% 70% at 10% 20%, rgba(123, 90, 34, 0.3), transparent 62%),
    linear-gradient(180deg, var(--black) 0%, var(--black-3) 60%, var(--black) 100%);
}
.final-cta::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(226, 221, 209, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 221, 209, 0.06) 1px, transparent 1px);
  background-size: 76px 76px;
}

/* Caixa dourada GB — substitui a antiga logo esticada de fundo */
.final-mark {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: clamp(-60px, 2vw, 60px);
  width: clamp(220px, 30vw, 430px);
  transform: translateY(-50%);
  opacity: 0.5;
  filter: drop-shadow(0 26px 70px rgba(123, 90, 34, 0.5));
  animation: floatY 9s ease-in-out infinite;
  pointer-events: none;
}
/* No celular a marca fica atrás do texto: reduz para não atrapalhar a leitura */
@media (max-width: 899px) {
  .final-mark { top: auto; bottom: 4%; left: 50%; opacity: 0.13; transform: translateX(-50%); }
}
.final-mark svg { width: 100%; height: auto; aspect-ratio: 200 / 210; }

.final-content { position: relative; z-index: 2; }
.final-content h2 { margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.3rem); }
.final-content > p { max-width: 56ch; color: var(--grey-2); }
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 22px;
}
.final-actions .button { flex: 1 1 250px; }
.final-note { font-size: 0.85rem; color: var(--grey-2); }
.final-note a { color: var(--gold-4); font-weight: 700; }

/* ---------------------------------------------------------------------
   24. RODAPÉ
   --------------------------------------------------------------------- */
.site-footer {
  /* folga no rodapé para os botões flutuantes não cobrirem o conteúdo */
  padding: clamp(52px, 6vw, 86px) var(--gutter) clamp(96px, 9vw, 110px);
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}
.footer-inner {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
}
.footer-brand p {
  max-width: 42ch;
  margin-top: 16px;
  font-size: 0.87rem;
  color: var(--grey-2);
}
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h2 {
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-4);
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--grey-2);
  transition: color 180ms ease;
}
.footer-col a:hover { color: var(--gold-5); }

.footer-legal {
  max-width: var(--content);
  margin: clamp(32px, 4vw, 52px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 221, 209, 0.08);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--grey-2);
}

/* ---------------------------------------------------------------------
   25. FLUTUANTES
   --------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  z-index: 85;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(206, 174, 113, 0.34);
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.9);
  color: var(--gold-4);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.back-to-top[hidden] { display: none; }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  min-height: 54px;
  padding: 7px 7px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(206, 174, 113, 0.4);
  border-radius: 16px;
  color: var(--champagne);
  background: rgba(2, 1, 1, 0.94);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, border-color 200ms ease;
}
.whatsapp-float:hover { transform: translateY(-2px); border-color: var(--gold-4); }
.whatsapp-float > span {
  flex: none;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--grad-gold);
  color: var(--black);
}
.whatsapp-float > span svg { width: 23px; height: 23px; }
.whatsapp-float b { display: none; padding-right: 12px; font-size: 0.82rem; font-weight: 750; }

/* ---------------------------------------------------------------------
   26. ANIMAÇÕES DE ENTRADA
   --------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 640ms cubic-bezier(0.22, 0.68, 0.32, 1) calc(var(--reveal-delay, 0) * 90ms),
    transform 640ms cubic-bezier(0.22, 0.68, 0.32, 1) calc(var(--reveal-delay, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Performance: só renderiza o que está próximo da viewport */
.transformation,
.projects,
.differentials,
.process,
.plans,
.testimonials,
.coverage,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* ---------------------------------------------------------------------
   27. RESPONSIVIDADE
   --------------------------------------------------------------------- */

/* --- ≥ 600px: celulares grandes / tablets pequenos --- */
@media (min-width: 600px) {
  .impact-grid,
  .services-grid,
  .diff-grid,
  .projects-grid,
  .plans-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .proof-strip { grid-template-columns: repeat(4, 1fr); }
  .proof-strip > div { border-bottom: 0; }
  .proof-strip > div:nth-child(2n) { border-right: 1px solid var(--line-dark); }
  .proof-strip > div:last-child { border-right: 0; }

  .whatsapp-float b { display: block; }
}

/* --- ≥ 900px: tablets grandes --- */
@media (min-width: 900px) {
  .heading-split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }

  .about-grid { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); }
  .about-pillars { grid-template-columns: 1fr; }

  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .landing-pages { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .process { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; }
  .faq { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: start; }

  .comparison { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
  .comparison-bridge { flex-direction: column; gap: 8px; }

  .footer-inner { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); }

  .final-content { width: min(720px, 64%); margin-left: auto; margin-right: 0; }
}

/* --- ≥ 1060px: notebooks e desktops --- */
@media (min-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
  .hero > .hero-text,
  .hero > .hero-visual { max-width: none; margin-inline: 0; }
  .hero-text { max-width: 620px; margin-left: auto; }
  .hero-visual { max-width: 640px; }
  .hero-actions .button { flex: 0 1 auto; }

  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .mobile-menu { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
}

/* --- ≥ 1500px: telas amplas --- */
@media (min-width: 1500px) {
  :root { --content: 1380px; }
  .hero-visual-stage { max-height: 700px; }
}

/* --- Navegação: reposiciona o hero em telas médias --- */
@media (max-width: 1059px) {
  .hero { text-align: left; }
  .hero-text { margin-inline: auto; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
}

/* --- Celulares: mais altura útil para os mockups não se cortarem --- */
@media (max-width: 460px) {
  .hero-visual-stage { aspect-ratio: 1 / 1; }
  .phone-device { width: 46%; }
  .desktop-device { width: 86%; }
}

/* --- Celulares pequenos --- */
@media (max-width: 380px) {
  .brand-lockup small { display: none; }
  .brand-lockup strong { letter-spacing: 0.18em; }
  .hero-actions .button,
  .final-actions .button { flex: 1 1 100%; }
}

/* --- Toque: sem efeitos de hover pesados --- */
@media (hover: none) {
  .service-card:hover,
  .diff-card:hover,
  .plan-card:hover,
  .project-card:hover,
  .impact-card:hover { transform: none; }
}

/* --- Impressão --- */
@media print {
  .site-header, .whatsapp-float, .back-to-top, .scroll-progress, .hero-visual, .lp-showcase { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --- Acessibilidade: movimento reduzido --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

    
/* ---------------------------------------------------------------------
   AJUSTES 2026 — fotos reais nos projetos e caixa 3D no CTA final
   --------------------------------------------------------------------- */
.project-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 620ms cubic-bezier(0.22, 0.68, 0.32, 1);
}
.project-card:hover .project-photo { transform: scale(1.07); }
/* Com foto real no card, o veu escuro precisa ser mais leve: mostra a imagem
   no topo e mantem contraste de leitura so onde o texto encosta. */
.project-visual::before {
  z-index: 1;
  background:
    var(--pj),
    linear-gradient(180deg,
      rgba(2, 1, 1, 0) 0%,
      rgba(2, 1, 1, 0.06) 40%,
      rgba(2, 1, 1, 0.62) 74%,
      rgba(2, 1, 1, 0.93) 100%);
}
.project-food      { --pj: radial-gradient(120% 90% at 20% 8%, rgba(183, 138, 61, 0.20), transparent 58%); }
.project-authority { --pj: radial-gradient(120% 90% at 80% 8%, rgba(85, 66, 39, 0.24), transparent 60%); }
.project-beauty    { --pj: radial-gradient(120% 90% at 50% 0%, rgba(206, 174, 113, 0.16), transparent 60%); }
.project-visual > span,
.project-visual > strong { z-index: 2; }

.final-mark img {
  display: block;
  width: 100%;
  height: auto;
  /* screen apaga o preto da foto; a mascara dissolve as bordas do retangulo
     para a caixa dourada flutuar no fundo sem moldura aparente. */
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(52% 46% at 29% 67%, #000 42%, rgba(0, 0, 0, 0) 84%);
          mask-image: radial-gradient(52% 46% at 29% 67%, #000 42%, rgba(0, 0, 0, 0) 84%);
  transform: scale(1.38) translate(22%, -4%);
  transform-origin: center;
}
.final-mark { opacity: 0.92; }
@media (max-width: 899px) {
  .final-mark { opacity: 0.28; }
}
@media (prefers-reduced-motion: reduce) {
  .project-photo,
  .project-card:hover .project-photo { transition: none; transform: none; }
}

/* =====================================================================
   PAGINAS INTERNAS — cards em secao clara e tipografia de artigo
   ===================================================================== */
.section-light .diff-card {
  border-color: var(--line-light);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46));
}
.section-light .diff-card h3 { color: var(--black-3); }
.section-light .diff-card p,
.section-light .diff-card small { color: #574734; }
.section-light .diff-card .card-kicker { color: var(--gold-2); }

.artigo { max-width: 78ch; margin-inline: 0; justify-self: start; }
.artigo h2 {
  margin: 48px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.16;
}
.artigo h2:first-child { margin-top: 0; }
.artigo h3 {
  margin: 32px 0 10px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--gold-4);
}
.artigo p { margin-bottom: 20px; font-size: 1rem; color: var(--grey-2); }
.artigo ul { margin: 0 0 28px; padding-left: 22px; display: grid; gap: 11px; }
.artigo li { font-size: 0.97rem; color: var(--grey-2); }
.artigo strong { color: var(--ivory); font-weight: 700; }