/* ============================================
   PARANÁ ESQUADRIAS — LP VEDAÇÃO V2 PREMIUM
   Identidade extraída do site oficial:
   - Sora (headings)
   - Plus Jakarta Sans (body)
   - #FF5700 acento (laranja oficial da marca)
   - #1A1717 ink
   - #00CD40 WhatsApp
   ============================================ */

:root {
  /* Site é light-only — impede o navegador (ex: MIUI/Xiaomi) de forçar dark mode e inverter cores */
  color-scheme: light;
  /* Cores extraídas da marca */
  --brand-orange: #FF5700;
  --brand-orange-soft: #FF7A33;
  --brand-orange-deep: #E04D00;
  --brand-black: #0A0808;
  --brand-ink: #1A1717;
  --brand-ink-soft: #33373D;
  --brand-gray: #7A7A7A;
  --brand-line: rgba(26, 23, 23, 0.08);
  --brand-line-strong: rgba(26, 23, 23, 0.15);

  --whatsapp: #00CD40;
  --whatsapp-deep: #00A833;

  --bg: #FAFAF7;             /* off-white premium */
  --bg-pure: #FFFFFF;
  --bg-stone: #F2F0EA;       /* pedra clara */
  --bg-dark: #0A0808;
  --bg-dark-soft: #141111;

  --ink-50: #FAFAF7;
  --ink-100: rgba(255,255,255,0.7);
  --ink-200: rgba(255,255,255,0.45);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-card: 0 1px 2px rgba(10,8,8,.04), 0 8px 32px -8px rgba(10,8,8,.08);
  --shadow-glow-orange: 0 16px 40px -12px rgba(255,87,0,.45);
  --shadow-glow-wa: 0 16px 40px -12px rgba(0,205,64,.45);
}

/* ============================================
   RESET + BASE
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-feature-settings: 'ss01', 'cv11';
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, .display {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--brand-ink);
}

h2.display, .display { font-weight: 700; }
em { font-style: italic; font-weight: 400; color: var(--brand-orange); }

p { margin: 0 0 1em; color: var(--brand-ink-soft); }

a { color: var(--brand-orange); text-decoration: none; transition: color .2s var(--ease-soft); }

img { max-width: 100%; display: block; }

.highlight {
  color: var(--brand-orange);
  font-style: italic;
  font-weight: 600;
}
.highlight-light {
  color: var(--brand-orange);
  font-style: italic;
  font-weight: 600;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 860px; }

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.section { padding: 140px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head { max-width: 760px; margin-bottom: 80px; }
.section-head .display {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  margin-top: 18px;
}
.section-head .section-lede {
  margin-top: 24px;
  font-size: 1.125rem;
  color: var(--brand-ink-soft);
  max-width: 580px;
  line-height: 1.65;
}
.section-head-light .display { color: #fff; }
/* Especificidade (0,2,0) pra vencer .section-head .section-lede e clarear no fundo escuro */
.section-head-light .section-lede,
.section-head .section-lede-light {
  color: rgba(255, 255, 255, 0.82);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  padding: 0;
}
.kicker-light { color: var(--brand-orange-soft); }

/* ============================================
   SCROLL PROGRESS
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============================================
   TOPBAR (mesmo padrão do site principal — laranja)
   ============================================ */

.topbar {
  background: var(--brand-orange);
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 90;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.2s var(--ease-soft);
  /* área de toque maior (acessibilidade mobile) sem inflar a barra */
  padding: 9px 0;
  margin: -9px 0;
}
.topbar-link:hover { opacity: 0.85; color: #fff; }
.topbar-link svg { flex-shrink: 0; opacity: 0.95; }

.topbar-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.75;
  margin-left: 2px;
  text-transform: lowercase;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-orange);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s var(--ease-soft);
  flex-shrink: 0;
}
.topbar-cta:hover {
  background: var(--brand-ink);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile: simplifica a topbar (mantém só telefones + CTA, esconde email) */
@media (max-width: 900px) {
  .topbar-link-email { display: none; }
  .topbar-contacts { gap: 16px; }
  .topbar-link { font-size: 0.78rem; gap: 6px; }
  .topbar-tag { display: none; }
  .topbar-inner { gap: 12px; padding-top: 10px; padding-bottom: 10px; }
  .topbar-cta { padding: 7px 14px; font-size: 0.78rem; }
}

/* Em mobile pequeno: esconde topbar-cta pra deixar telefones mais visíveis */
@media (max-width: 480px) {
  .topbar-cta { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-contacts { justify-content: center; width: 100%; }
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--brand-line);
  transition: all 0.3s var(--ease-soft);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--brand-line-strong);
  padding: 12px 0;
  box-shadow: 0 4px 24px -8px rgba(10,8,8,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--brand-ink);
}

/* DESKTOP: símbolo PR + texto ao lado */
.brand-symbol {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-soft);
  flex-shrink: 0;
}
.brand:hover .brand-symbol { transform: rotate(-4deg) scale(1.05); }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
}
.brand-tagline {
  font-size: 0.78rem;
  color: var(--brand-gray);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Logo vertical (não usado no header — fica só no menu mobile) */
.brand-mobile-full { display: none; }

/* Header com scroll: encolhe */
.header.scrolled .brand-symbol { height: 44px; }
.header.scrolled .brand-name { font-size: 1.05rem; }

/* MOBILE/TABLET: símbolo + texto ao lado (horizontal, harmônico) */
@media (max-width: 768px) {
  .brand-symbol { display: block; height: 42px; }
  .brand-text { display: flex; }
  .brand-name { font-size: 0.92rem; line-height: 1.1; }
  .brand-tagline { font-size: 0.68rem; margin-top: 2px; }
  .brand { gap: 10px; }
  .header { padding: 12px 0; }
  .header.scrolled { padding: 8px 0; }
  .header.scrolled .brand-symbol { height: 38px; }
  .header.scrolled .brand-name { font-size: 0.88rem; }
}

@media (max-width: 380px) {
  .brand-symbol { height: 38px; }
  .brand-name { font-size: 0.84rem; }
  .brand-tagline { font-size: 0.64rem; }
  .brand { gap: 8px; padding: 4px 8px; }
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-ink);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-orange);
  transition: width 0.3s var(--ease-soft);
}
.nav a:hover { color: var(--brand-orange); }
.nav a:hover::after { width: 100%; }

@media (max-width: 1024px) { .nav { display: none; } }

.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  background: var(--brand-ink);
  color: #fff;
  transition: all 0.25s var(--ease-soft);
}
.btn-mini:hover {
  background: var(--brand-orange);
  transform: translateX(2px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-soft);
  position: relative;
  overflow: hidden;
}
.btn-large { padding: 18px 32px; font-size: 1.025rem; }

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-orange-deep);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px rgba(255,87,0,.6);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-glow-wa);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px rgba(0,205,64,.6);
}

.btn-line {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-line:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05) saturate(0.85);
  animation: heroZoom 18s var(--ease-soft) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1) translateZ(0); }
  to { transform: scale(1.08) translateZ(0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255,87,0,0.18) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10,8,8,0.92) 0%, rgba(10,8,8,0.78) 50%, rgba(10,8,8,0.9) 100%);
}
/* Mobile: overlay mais forte à esquerda (onde fica o texto) pra máximo contraste */
@media (max-width: 768px) {
  .hero-overlay {
    background:
      radial-gradient(ellipse at 80% 20%, rgba(255,87,0,0.16) 0%, transparent 45%),
      linear-gradient(180deg, rgba(10,8,8,0.88) 0%, rgba(10,8,8,0.82) 60%, rgba(10,8,8,0.92) 100%);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 12px var(--brand-orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-orange);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1.2s 0.5s var(--ease-out) forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}
.stat-num small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--brand-orange);
  margin-left: 4px;
  letter-spacing: 0;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ===== HERO MOBILE: primeira dobra compacta e alinhada ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0 52px;
    align-items: flex-start;
  }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-title { margin-bottom: 18px; }
  .hero-tagline { margin: 14px 0 14px; }
  .hero-lede { margin-bottom: 28px; }
  .hero-ctas { margin-bottom: 32px; gap: 12px; }
  .hero-ctas .btn { width: 100%; }   /* botões full-width no mobile */
  .hero-stats { padding-top: 24px; }
}

/* Stats: 3 colunas alinhadas no mobile (sem o 2+1 quebrado) */
@media (max-width: 640px) {
  .stat-divider { display: none; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
  }
  .stat-num { font-size: 1.9rem; }
  .stat-label { font-size: 0.72rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
/* Esconde o indicador "Rolar" no mobile (definido após a regra base pra vencer) */
@media (max-width: 768px) {
  .hero-scroll { display: none; }
}

/* ============================================
   PROBLEMA
   ============================================ */

.section-problem { background: var(--bg); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--brand-line);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.problem-card {
  background: var(--bg);
  padding: 48px 32px;
  position: relative;
  transition: all 0.4s var(--ease-soft);
  cursor: default;
}
.problem-card:hover {
  background: var(--bg-pure);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(10,8,8,0.12);
  z-index: 2;
}

.problem-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-orange);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.problem-icon {
  width: 56px;
  height: 56px;
  color: var(--brand-ink);
  margin-bottom: 28px;
  transition: all 0.4s var(--ease-soft);
}
.problem-card:hover .problem-icon {
  color: var(--brand-orange);
  transform: rotate(-4deg) scale(1.1);
}
.problem-icon svg { width: 100%; height: 100%; }

.problem-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.problem-card p {
  font-size: 0.95rem;
  color: var(--brand-ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   SOLUÇÃO
   ============================================ */

.section-solution {
  background: var(--bg-pure);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}
@media (min-width: 1024px) {
  .solution-grid { grid-template-columns: 1.1fr 0.9fr; gap: 100px; }
}

.solution-content .display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 18px 0 24px;
}
.solution-lede {
  font-size: 1.125rem;
  color: var(--brand-ink-soft);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.65;
}

.features {
  display: grid;
  gap: 28px;
  margin-bottom: 48px;
}
.feature {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--brand-line);
}
.feature:last-child { border-bottom: none; }
.feature-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-ink);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.feature h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 0.92rem;
  color: var(--brand-ink-soft);
  margin: 0;
  line-height: 1.55;
}

.solution-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Alinha a 1ª legenda da direita com o texto do kicker à esquerda (compensa o offset de line-height do kicker) */
@media (min-width: 1024px) {
  .solution-visual { padding-top: 7px; }
}

/* Par antes/depois com legenda */
.visual-pair {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visual-pair-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-ink);
}
.visual-pair-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.visual-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--brand-line);
}

.vc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-ink);
  color: #fff;
}
.vc-tag-danger {
  background: var(--danger, #e11d48);
}

.vc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-soft);
}
.visual-card:hover .vc-img {
  transform: scale(1.04);
}

.vc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}
.vc-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }
.vc-placeholder strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}
.vc-placeholder span { font-size: 0.78rem; opacity: 0.65; }
.vc-before { background: linear-gradient(135deg, #FFF7F0, #FFE0CC); color: var(--brand-orange-deep); }
.vc-after { background: linear-gradient(135deg, #F0F9F0, #DCF0DC); color: var(--whatsapp-deep); }

.visual-quote {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-orange);
}
.visual-quote svg { flex-shrink: 0; color: var(--brand-orange); opacity: 0.4; }
.visual-quote p {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-ink);
  line-height: 1.5;
}

/* ============================================
   PROCESSO (dark)
   ============================================ */

.section-process {
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.section-process::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,87,0,0.12), transparent 60%);
  pointer-events: none;
}
.section-process .section-head .display { color: #fff; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

.process-step {
  background: var(--bg-dark);
  padding: 56px 40px;
  position: relative;
  transition: background 0.4s var(--ease-soft);
}
.process-step:hover { background: var(--bg-dark-soft); }

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 4.5rem;
  font-weight: 200;
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.step-line {
  width: 40px;
  height: 1px;
  background: var(--brand-orange);
  margin-bottom: 24px;
}
.process-step h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.step-time {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}

/* ============================================
   TESTEMUNHOS
   ============================================ */

.section-testimonials { background: var(--bg-stone); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--bg-pure);
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--brand-ink);
  transition: all 0.3s var(--ease-soft);
  position: relative;
  overflow: hidden;
}
.testimonial::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,87,0,0.04) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-soft);
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(10,8,8,.05), 0 24px 48px -16px rgba(255,87,0,.18);
  border-color: var(--brand-orange);
  color: var(--brand-ink);
}
.testimonial:hover::after { opacity: 1; }

.t-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.t-stars {
  color: var(--brand-orange);
  font-size: 1rem;
  letter-spacing: 3px;
}
.t-google-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--brand-line);
  flex-shrink: 0;
}

.testimonial blockquote {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--brand-ink);
  margin: 0 0 24px;
  flex-grow: 1;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.t-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-line);
  position: relative;
  z-index: 1;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-ink) 0%, var(--brand-ink-soft) 100%);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.t-author {
  flex: 1;
  min-width: 0;
}
.t-author strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-author span {
  font-size: 0.75rem;
  color: var(--brand-gray);
  display: block;
  margin-top: 2px;
}

.t-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-orange);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,87,0,0.08);
  flex-shrink: 0;
  transition: all 0.25s var(--ease-soft);
  letter-spacing: -0.01em;
}
.testimonial:hover .t-cta {
  background: var(--brand-orange);
  color: #fff;
  transform: translateX(2px);
}
.testimonial:hover .t-cta svg {
  transform: translateX(1px);
}
.t-cta svg { transition: transform 0.25s var(--ease-soft); }

/* ============================================
   FAQ
   ============================================ */

.section-faq { background: var(--bg-pure); }

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--brand-line);
}
.faq-item {
  border-bottom: 1px solid var(--brand-line);
  transition: all 0.3s var(--ease-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 1.075rem;
  font-weight: 500;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
  user-select: none;
  transition: color 0.2s var(--ease-soft);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-orange); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--brand-line-strong);
  position: relative;
  transition: all 0.3s var(--ease-soft);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand-ink);
  transition: all 0.3s var(--ease-soft);
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}
.faq-item[open] .faq-icon::before { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); background: #fff; }

.faq-item p {
  padding: 0 0 32px;
  margin: 0;
  font-size: 1rem;
  color: var(--brand-ink-soft);
  line-height: 1.65;
  max-width: 720px;
}

/* ============================================
   CTA FINAL
   ============================================ */

.section-cta { padding: 100px 0 140px; background: var(--bg); }

.cta-shell {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding: 80px 64px;
}
.cta-shell::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,87,0,0.15), transparent 60%);
  pointer-events: none;
}
.cta-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.5;
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .cta-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
@media (max-width: 640px) {
  .cta-shell { padding: 56px 28px; border-radius: var(--radius-lg); }
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: #fff;
  margin: 20px 0 24px;
}
.cta-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-orange);
  display: block;
}
.cta-lede {
  font-size: 1.075rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-micro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  letter-spacing: 0.02em;
}

.cta-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.cta-meta {
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-soft);
}
.cta-meta:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,87,0,0.3);
}
.cta-meta-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brand-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cta-meta-value {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-stone);
  padding: 80px 0 32px;
  border-top: 1px solid var(--brand-line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--brand-line);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 1.6fr 1.1fr 1.1fr 0.9fr; gap: 56px; }
}

.footer-hours {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--brand-line);
  color: var(--brand-ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-hours strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-bottom small a {
  color: var(--brand-ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--brand-line-strong);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-soft);
}
.footer-bottom small a:hover { color: var(--brand-orange); }

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--brand-ink-soft);
  font-size: 0.95rem;
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}

.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--brand-ink-soft);
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color 0.2s var(--ease-soft);
}
.footer-col a:hover { color: var(--brand-orange); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small {
  font-size: 0.82rem;
  color: var(--brand-gray);
}

/* ============================================
   WHATSAPP FLOATING
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-wa);
  z-index: 50;
  transition: all 0.3s var(--ease-soft);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 24px 48px -8px rgba(0,205,64,.6);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 16px 40px -12px rgba(0,205,64,.45); }
  50% { box-shadow: 0 16px 40px -12px rgba(0,205,64,.45), 0 0 0 14px rgba(0,205,64,.15); }
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */

*:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--brand-orange);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Animation utilities */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   V3 — NOVOS ELEMENTOS
   ============================================ */

/* Hero tagline */
.hero-tagline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: var(--brand-orange);
  margin: 18px 0 16px;
  letter-spacing: -0.01em;
  font-style: italic;
}
.hero-tagline strong {
  font-weight: 700;
  color: #fff;
  font-style: normal;
}

/* Hero stat — texto que entra antes do número */
.stat-num small {
  display: block;
  font-size: 0.32em;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  line-height: 1;
}

/* Cores disponíveis (bolinhas inline) */
.colors-row {
  display: inline-flex;
  gap: 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.dot-color {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--brand-line-strong);
  vertical-align: middle;
}
.dot-gray { background: #7a7a7a; }
.dot-black { background: #1a1717; }
.dot-white { background: #fafaf7; border-color: var(--brand-line-strong); }

/* ============================================
   SEÇÃO DESEMPENHO (números técnicos)
   ============================================ */
.section-numbers { background: var(--bg); }

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--brand-line);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}
@media (min-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
}

.number-card {
  background: var(--bg-pure);
  padding: 56px 40px;
  transition: all 0.4s var(--ease-soft);
  position: relative;
}
.number-card:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.number-card-featured {
  background: var(--brand-ink);
  color: #fff;
}
.number-card-featured:hover {
  background: var(--brand-ink);
}
.number-card-featured h3 { color: #fff; }
.number-card-featured p { color: rgba(255,255,255,0.75); }
.number-card-featured .number-big { color: var(--brand-orange); }
.number-card-featured strong { color: #fff; }

.number-big {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--brand-orange);
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
}
.number-big small {
  font-size: 0.35em;
  font-weight: 500;
  margin-left: 4px;
  color: var(--brand-ink-soft);
  letter-spacing: -0.02em;
}
.number-card-featured .number-big small { color: rgba(255,255,255,0.5); }

.number-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.number-card p {
  font-size: 0.95rem;
  color: var(--brand-ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   SEÇÃO PARA QUEM É
   ============================================ */
.section-audience { background: var(--bg-stone); padding: 100px 0; }

.audience-shell {
  background: var(--bg-pure);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  border: 1px solid var(--brand-line);
  position: relative;
  overflow: hidden;
}
.audience-shell::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,87,0,0.08), transparent 60%);
  pointer-events: none;
}
.audience-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.audience-content .display {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 18px 0 24px;
}
.audience-lede {
  font-size: 1.1rem;
  color: var(--brand-ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.audience-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--brand-line-strong);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-ink);
}
.audience-quote {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brand-ink);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--brand-line);
}
.audience-quote strong {
  color: var(--brand-orange);
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 640px) {
  .audience-shell { padding: 40px 28px; border-radius: var(--radius-lg); }
}

/* ============================================
   SEÇÃO OUTROS SERVIÇOS
   ============================================ */
.section-services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: block;
  padding: 32px 28px;
  background: var(--bg-pure);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  color: var(--brand-ink);
  position: relative;
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--brand-orange);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--brand-ink-soft);
  margin: 0;
  line-height: 1.55;
}

.services-foot {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: var(--brand-ink-soft);
  padding-top: 16px;
  border-top: 1px solid var(--brand-line);
}
.services-foot a {
  font-weight: 600;
  color: var(--brand-orange);
  margin-left: 6px;
  transition: color 0.2s var(--ease-soft);
}
.services-foot a:hover {
  color: var(--brand-orange-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================
   GOOGLE HERO (destaque +900 avaliações · 4,8 ★)
   ============================================ */
.google-hero {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 28px 36px;
  background: var(--bg-pure);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--brand-ink);
  transition: all 0.35s var(--ease-soft);
  box-shadow: 0 1px 2px rgba(10,8,8,.03), 0 12px 32px -16px rgba(10,8,8,.08);
  position: relative;
  overflow: hidden;
}
.google-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,87,0,0.04) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
}
.google-hero:hover {
  transform: translateY(-3px);
  border-color: var(--brand-orange);
  box-shadow: 0 4px 12px rgba(10,8,8,.04), 0 28px 56px -20px rgba(255,87,0,.22);
  color: var(--brand-ink);
}
.google-hero:hover::before { opacity: 1; }

/* Left: Logo + nota */
.gh-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gh-google-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gh-rating-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.gh-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
  line-height: 1;
}
.gh-stars {
  color: var(--brand-orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.gh-rating-label {
  font-size: 0.82rem;
  color: var(--brand-gray);
  letter-spacing: 0.01em;
}

.gh-divider {
  width: 1px;
  height: 56px;
  background: var(--brand-line);
}

/* Center: +900 (destaque grande) */
.gh-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}
.gh-big-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-orange);
  line-height: 0.9;
}
.gh-big-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* Right: CTA */
.gh-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.gh-cta-label {
  font-size: 0.78rem;
  color: var(--brand-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
}
.gh-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-orange);
  letter-spacing: -0.01em;
  transition: gap 0.25s var(--ease-soft);
}
.google-hero:hover .gh-cta-action {
  gap: 12px;
}

/* Mobile/tablet layout */
@media (max-width: 900px) {
  .google-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }
  .gh-divider { display: none; }
  .gh-left, .gh-center, .gh-right {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .gh-center { padding: 16px 0; border-top: 1px solid var(--brand-line); border-bottom: 1px solid var(--brand-line); width: 100%; }
  .gh-big-num { font-size: 3.25rem; }
}

/* ============================================
   TESTIMONIALS CARROSSEL MOBILE / GRID DESKTOP
   ============================================ */
.testimonials-carousel {
  position: relative;
}

/* Desktop: grid normal (já está definido acima do código) */
/* Mobile (<768px): vira carrossel horizontal */
@media (max-width: 767px) {
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 4px 12px;
    margin: 0 -20px;
    scroll-padding: 0 20px;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid > .testimonial {
    flex: 0 0 88%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0;
  }
  .testimonials-grid > .testimonial:first-child { margin-left: 20px; }
  .testimonials-grid > .testimonial:last-child { margin-right: 20px; }
}

/* Carousel dots */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-line-strong);
  transition: all 0.25s var(--ease-soft);
}
.carousel-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--brand-orange);
}

/* Carousel swipe hint (mobile only) */
.carousel-hint {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brand-gray);
  letter-spacing: 0.02em;
  animation: hint-pulse 2.5s var(--ease-soft) infinite;
}
.carousel-hint svg {
  animation: hint-arrow 1.8s var(--ease-soft) infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes hint-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (max-width: 767px) {
  .carousel-dots,
  .carousel-hint { display: flex; }
}

/* Testimonials footer link */
.testimonials-foot {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--brand-line);
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: var(--brand-ink-soft);
}
.testimonials-foot strong { color: var(--brand-ink); font-weight: 600; }
.testimonials-foot a {
  display: inline;
  font-weight: 600;
  color: var(--brand-orange);
  transition: color 0.2s var(--ease-soft);
}
.testimonials-foot a:hover {
  color: var(--brand-orange-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.testimonials-foot a strong { color: inherit; font-weight: 700; }

/* ============================================
   TELAS ULTRA-ESTREITAS (dobráveis fechados, ex: Galaxy Fold/Z Fold cover)
   Garante adaptação até ~280px sem quebras
   ============================================ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }

  /* Botões: evita quebra de texto + reduz padding lateral */
  .btn { padding-left: 18px; padding-right: 18px; }
  .btn-large { padding: 16px 18px; font-size: 0.95rem; gap: 8px; }
  .btn svg { flex-shrink: 0; }

  /* Hero stats: menos apertado */
  .hero-stats { gap: 10px; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.66rem; }

  /* Headlines display um pouco menores pra respirar */
  .section-head .display { font-size: clamp(1.9rem, 8vw, 2.4rem); }

  /* CTA shell e cards internos com menos padding */
  .cta-shell { padding: 44px 20px; }
  .testimonial { padding: 28px 22px; }
}

/* Caso extremo: telas <= 300px (Galaxy Fold original) */
@media (max-width: 300px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }  /* 2 colunas em vez de 3 */
  .hero-stats .stat:last-child { grid-column: 1 / -1; }  /* 3º stat ocupa a linha toda, centralizado */
  .hero-stats .stat:last-child { align-items: flex-start; }
  .btn-large { font-size: 0.9rem; }
}

/* ============================================
   MENU MOBILE (hambúrguer) — como o site principal
   ============================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: var(--brand-orange);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s var(--ease-soft);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-soft);
}
.nav-toggle:hover { background: var(--brand-orange-deep); }

/* Mostra o hambúrguer onde a nav desktop some */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
}

/* Overlay do menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0A0808;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Versão dark do logo dentro do menu (fundo escuro) — usa fundo branco próprio */
.mobile-menu-logo {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-soft);
}
.mobile-menu-close:hover { background: var(--brand-orange); border-color: var(--brand-orange); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  flex: 1;
}
.mobile-menu-nav a {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.02em;
  transition: color 0.2s var(--ease-soft), padding-left 0.2s var(--ease-soft);
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  color: var(--brand-orange);
  padding-left: 8px;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.mobile-menu-cta .btn { width: 100%; }
.mobile-menu-phone {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.mobile-menu-phone:hover { color: var(--brand-orange); }

/* Trava o scroll do body quando o menu está aberto */
body.menu-open { overflow: hidden; }

/* ============================================
   LOGO À PROVA DE FORCED-DARK (MIUI/Xiaomi)
   Fundo branco próprio resiste à inversão do navegador
   ============================================ */
.brand {
  background-color: #ffffff;
  /* background-image resiste ao forced-dark do MIUI (que só inverte background-color) */
  background-image: linear-gradient(#ffffff, #ffffff);
  border-radius: 10px;
  padding: 4px 10px;
}
/* No desktop o texto da marca precisa permanecer escuro mesmo sob forced-dark */
.brand-name { color: #1A1717 !important; }
.brand-tagline { color: #7A7A7A !important; }

/* Footer logo também ganha fundo claro próprio */
.footer-logo {
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff, #ffffff);
  border-radius: 8px;
  padding: 8px 10px;
}
