.elementor-48 .elementor-element.elementor-element-982951f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2940d48 *//* ============================================================
   CASA & LEGADO — Design System Premium
   Paleta: Cores exatas da logo original
   Azul principal #394F95 · Azul escuro #273B86 · Azul claro #4A5F9D
   Branco #FFFFFF · Dourado #C9A84C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Paleta extraída da logo original */
  --brand:       #394F95;   /* azul principal da logo */
  --brand-dark:  #273B86;   /* azul escuro / listras diagonais */
  --brand-deep:  #273B86;   /* seções hero */
  --brand-deeper:#1E2E6E;   /* footer / elementos mais escuros */
  --brand-mid:   #3D539A;   /* variante interna */
  --brand-light: #4A5F9D;   /* azul claro da logo */
  --brand-glass: rgba(255,255,255,0.06);
  --brand-glass2:rgba(255,255,255,0.10);

  /* Aliases */
  --blue:        #394F95;
  --blue-dark:   #273B86;
  --blue-light:  #4A5F9D;
  --blue-pale:   rgba(255,255,255,0.08);
  --blue-mid:    rgba(255,255,255,0.12);
  --navy:        #273B86;
  --navy-deep:   #1E2E6E;

  /* Dourado */
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;

  /* Neutros */
  --white:       #FFFFFF;
  --surface:     rgba(255,255,255,0.05);
  --surface-2:   rgba(255,255,255,0.08);
  --border:      rgba(255,255,255,0.10);
  --border-light:rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.30);

  /* Texto */
  --text-main:   #FFFFFF;
  --text-sub:    rgba(255,255,255,0.72);
  --text-muted:  rgba(255,255,255,0.42);

  /* Tipografia */
  --font:         'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Radii */
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 100px;

  /* Sombras */
  --shadow-xs:   0 1px 6px rgba(0,0,0,0.20);
  --shadow-sm:   0 2px 14px rgba(0,0,0,0.25);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.30);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.35);
  --shadow-blue: 0 8px 28px rgba(26,36,96,0.60);
  --shadow-gold: 0 6px 22px rgba(201,168,76,0.40);

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.28s;

  /* Layout */
  --nav-h: 175px;
  --max-w: 1160px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--brand);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--brand-deep); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
   max-width: 100% !important;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--brand);          /* #394F95 — azul principal da logo */
  border-bottom: 4px solid var(--gold);
  transition: box-shadow var(--t) var(--ease), background var(--t);
}
.site-header.scrolled {
  background: var(--brand);
  box-shadow: 0 6px 36px rgba(0,0,0,0.40);
}
.header-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — exibida diretamente sobre o cabeçalho azul */
.logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.logo-img {
  height: 160px;
  width: 100px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  mix-blend-mode: lighten; /* funde o azul do fundo da logo com o header */
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold);                  /* dourado sobre azul da logo */
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.14);
}
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-deeper);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  margin-left: 10px;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  letter-spacing: 0.3px;
  border: 2px solid var(--gold);
}
.btn-header-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--brand-deeper);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--gold); border-radius: 2px;
  transition: all var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font); font-weight: 700;
  font-size: 14px; letter-spacing: 0.2px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--t) var(--ease); text-decoration: none;
  white-space: nowrap;
}
.btn-lg  { padding: 16px 36px; font-size: 15px; }
.btn-sm  { padding: 9px 18px;  font-size: 13px; }

.btn-primary {
  background: var(--gold); color: var(--brand-deeper);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
  color: var(--brand-deeper);
}

.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.40);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12); color: var(--white);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.40);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold); color: var(--brand-deeper);
  border-color: var(--gold); font-weight: 800;
}
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
  color: var(--brand-deeper);
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════════════════════════════ */
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-lg  { padding: 128px 0; }

/* Todas as seções usam fundo azul — diferenciação por tonalidade */
.section-white   { background: var(--brand); }
.section-surface { background: var(--brand-dark); }
.section-navy    { background: var(--brand-deep); }
.section-mid     { background: var(--brand-darker, #232f7a); }

/* Zebra de seções para respiração visual */
.section-alt { background: var(--brand-dark); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }

/* ══════════════════════════════════════════════════════════════
   TIPOGRAFIA
══════════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px; flex-shrink: 0;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-gold::before { background: var(--gold); }
.eyebrow-white { color: rgba(255,255,255,0.65); }
.eyebrow-white::before { background: rgba(255,255,255,0.35); }

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1.5px; color: var(--white);
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.5px; color: var(--white);
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; line-height: 1.2;
  color: var(--white);
}
.heading-sm {
  font-size: 20px; font-weight: 700;
  line-height: 1.3; color: var(--white);
}

.body-lg  { font-size: 17px; line-height: 1.8;  color: var(--text-sub); }
.body-md  { font-size: 15px; line-height: 1.75; color: var(--text-sub); }
.body-sm  { font-size: 13px; line-height: 1.7;  color: var(--text-muted); }
.body-white { color: rgba(255,255,255,0.65); }

/* Dividers */
.divider-blue {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 0 0 28px 0;
}
.divider-center-blue {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 0 auto 28px;
}
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-bottom: 28px;
}
.divider-center { margin: 0 auto 28px; }

/* ══════════════════════════════════════════════════════════════
   HERO CLEAN
══════════════════════════════════════════════════════════════ */
.hero-clean {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--brand-deeper);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Luz radial suave */
.hero-clean-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(75,94,196,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero-clean::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-clean-inner {
  position: relative; z-index: 2;
  padding: 100px 0 120px;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--radius-full);
  margin-bottom: 36px;
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: blink 2s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-clean-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700; line-height: 1.06;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-clean-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-clean-sub {
  font-size: 17px; line-height: 1.8;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-clean-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-clean-trust {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; gap: 3px;
}
.trust-item strong {
  font-size: 24px; font-weight: 900;
  color: var(--white); letter-spacing: -0.5px; line-height: 1;
}
.trust-item span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.trust-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.12);
}

/* Scroll hint */
.hero-clean-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-clean-scroll-hint span {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 0 auto;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }

/* ══════════════════════════════════════════════════════════════
   STATEMENT BLOCK
══════════════════════════════════════════════════════════════ */
.statement-block {
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow-md);
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-style: italic;
}
.statement-text strong {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}
.statement-link {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t);
  display: inline-flex; align-items: center; gap: 6px;
}
.statement-link:hover { gap: 10px; }
.statement-link span { transition: transform var(--t); }
.statement-link:hover span { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   PILARES CLEAN
══════════════════════════════════════════════════════════════ */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pilar-card-clean {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.pilar-card-clean::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.pilar-card-clean:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
}
.pilar-card-clean:hover::before { transform: scaleX(1); }

.pilar-num {
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: 0.60;
  margin-bottom: 20px;
}
.pilar-icon-clean {
  font-size: 36px; margin-bottom: 20px; display: block;
}
.pilar-title-clean {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
  line-height: 1.25;
}
.pilar-text-clean {
  font-size: 14.5px; line-height: 1.75;
  color: var(--text-sub);
}

/* ══════════════════════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════════════════════ */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diferenciais-text { }
.diferenciais-cards {
  display: flex; flex-direction: column; gap: 20px;
}

.dif-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
}
.dif-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  background: rgba(255,255,255,0.09);
}
.dif-card-icon {
  font-size: 26px;
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dif-card-title {
  font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.dif-card-text {
  font-size: 13.5px; line-height: 1.7;
  color: var(--text-sub);
}

/* ══════════════════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════════════════ */
.stats-section {
  background: var(--brand-deeper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(75,94,196,0.35) 0%, transparent 60%);
}
.stats-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 2;
}
.stat-clean {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-clean:last-child { border-right: none; }

.stat-clean-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -1px;
}
.stat-clean-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

/* ══════════════════════════════════════════════════════════════
   PROCESSO
══════════════════════════════════════════════════════════════ */
.processo-grid {
  display: flex; flex-direction: column; gap: 0;
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.processo-grid::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.10);
}
.processo-item {
  display: flex; align-items: flex-start; gap: 32px;
  padding: 28px 0;
  position: relative;
}
.processo-item:first-child { padding-top: 0; }
.processo-item:last-child  { padding-bottom: 0; }

.processo-num {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--brand-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.5px;
  position: relative; z-index: 2;
}
.processo-content {
  padding-top: 10px;
  flex: 1;
}
.processo-title {
  font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.processo-text {
  font-size: 14.5px; line-height: 1.7;
  color: var(--text-sub);
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }

.faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.faq-item.active {
  border-color: rgba(201,168,76,0.30);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  background: rgba(255,255,255,0.08);
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  font-size: 14.5px; font-weight: 600;
  color: var(--text-sub); background: none; border: none;
  cursor: pointer; transition: color var(--t);
}
.faq-item.active .faq-question { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400;
  color: var(--text-muted);
  transition: all var(--t) var(--ease);
}
.faq-item.active .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
  background: rgba(201,168,76,0.12);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px; line-height: 1.75;
  color: var(--text-sub);
}

/* ══════════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════════ */
.cta-final {
  background: var(--brand-deeper);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(75,94,196,0.40) 0%, transparent 65%);
}
.cta-final-inner {
  text-align: center;
  position: relative; z-index: 2;
}
.cta-final-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (páginas internas)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--brand-deeper);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 60% 40%, rgba(75,94,196,0.40) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.40);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* section-title / section-subtitle usados nas páginas internas */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   CARDS GENÉRICOS
══════════════════════════════════════════════════════════════ */
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t) var(--ease);
}
.card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t) var(--ease);
}
.card-dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.20);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
}
.card-title {
  font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.card-text {
  font-size: 14px; line-height: 1.7;
  color: var(--text-sub);
}
.card-title-white { color: var(--white); }
.card-text-white  { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════════════════
   TEAM CARDS (Quem Somos)
══════════════════════════════════════════════════════════════ */
.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.team-card:hover {
  border-color: rgba(201,168,76,0.30);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
}
.team-photo {
  width: 100%; height: 280px;
  object-fit: cover; object-position: top center;
  display: block;
}
.team-photo-placeholder {
  width: 100%; height: 280px;
  background: rgba(255,255,255,0.05);
  display: none; align-items: center; justify-content: center;
  font-size: 64px;
}
.team-body { padding: 28px 24px; }
.team-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.team-role {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.team-bio {
  font-size: 14px; line-height: 1.75;
  color: var(--text-sub);
}

/* Pilar Jurídico (legal-card) */
.legal-card {
  display: flex; align-items: flex-start; gap: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 48px;
  transition: all var(--t) var(--ease);
}
.legal-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.08);
}
.legal-photo {
  width: 180px; height: 220px;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  flex-shrink: 0; display: block;
}
.legal-photo-placeholder {
  width: 180px; height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  display: none; align-items: center; justify-content: center;
  font-size: 56px; flex-shrink: 0;
}
.legal-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.legal-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--white); margin-bottom: 18px;
  line-height: 1.2;
}
.legal-desc {
  font-size: 15px; line-height: 1.8;
  color: var(--text-sub); margin-bottom: 20px;
}
.legal-seal {
  font-style: italic;
  font-size: 14px; color: var(--gold);
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   ASSESSORIA — Modelos / Processo
══════════════════════════════════════════════════════════════ */
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.modelo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  transition: all var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.modelo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.modelo-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.modelo-card:hover::before { transform: scaleX(1); }
.modelo-card.featured { border-color: rgba(201,168,76,0.25); }
.modelo-card.featured::before { transform: scaleX(1); }

.modelo-badge {
  display: inline-block;
  background: var(--gold); color: var(--brand-deeper);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.modelo-badge-gold {
  background: var(--gold); color: var(--brand-deeper);
}
.modelo-nome {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.modelo-sub {
  font-size: 14px; line-height: 1.7;
  color: var(--text-sub); margin-bottom: 28px;
}
.modelo-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.modelo-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-sub);
}
.modelo-feature::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  color: var(--gold); font-size: 11px; font-weight: 800;
}

/* Processo visual assessoria */
.etapas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.etapas-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,0.10);
  z-index: 0;
}
.etapa-item {
  text-align: center;
  padding: 0 16px 0;
  position: relative; z-index: 2;
}
.etapa-num {
  width: 56px; height: 56px;
  background: var(--brand-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: var(--gold); margin: 0 auto 20px;
  position: relative; z-index: 2;
}
.etapa-title {
  font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.etapa-text {
  font-size: 12.5px; line-height: 1.65;
  color: var(--text-sub);
}

/* Comparativo table */
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
.compare-table th, .compare-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.compare-table th {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  background: rgba(255,255,255,0.06);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text-sub); }
.compare-table td { color: var(--text-sub); }
.compare-table .check { color: var(--gold); font-size: 18px; }
.compare-table .cross { color: rgba(255,255,255,0.30); font-size: 18px; }
.compare-table .check-partial { color: rgba(201,168,76,0.55); font-size: 18px; }

/* ══════════════════════════════════════════════════════════════
   CONTATO — Formulário
══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}
.contact-sidebar { }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-info-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-value {
  font-size: 15px; font-weight: 500;
  color: var(--text-sub);
}
.contact-info-value a:hover { color: var(--gold); }

/* Form */
.form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.form-sub {
  font-size: 14px; color: var(--text-sub);
  margin-bottom: 32px; line-height: 1.65;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--text-muted);
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-select option { background: var(--brand-dark); color: var(--white); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-full { grid-column: 1 / -1; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brand);   /* #394F95 — azul principal da logo */
  padding: 80px 0 0;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand { }

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}
.footer-logo-img {
  height: 90px; width: auto;
  object-fit: contain;
  opacity: 1;
  border-radius: 0;
  mix-blend-mode: lighten; /* funde o azul do fundo da logo com o footer */
}

.footer-tagline {
  font-size: 13.5px; line-height: 1.8;
  color: rgba(255,255,255,0.60);
  max-width: 280px; margin-bottom: 28px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social-link {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: all var(--t) var(--ease);
}
.footer-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.footer-social-link.instagram:hover { background: #E1306C; border-color: #E1306C; }
.footer-social-link.whatsapp:hover  { background: #25D366; border-color: #25D366; }
.footer-social-link.email:hover     { background: var(--gold); border-color: var(--gold); }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-link {
  font-size: 13.5px; color: rgba(255,255,255,0.70);
  transition: color var(--t);
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copyright {
  font-size: 12.5px; color: rgba(255,255,255,0.40);
}

/* WhatsApp float — ícone oficial SVG */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.50);
  z-index: 99;
  transition: all var(--t) var(--ease);
}
.whatsapp-float svg {
  width: 32px; height: 32px;
  fill: #ffffff;
  display: block;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.60);
  background: #22c55e;
}

/* ══════════════════════════════════════════════════════════════
   SEÇÃO REDES SOCIAIS
══════════════════════════════════════════════════════════════ */
.social-section {
  background: var(--brand-deeper);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.social-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(75,94,196,0.30) 0%, transparent 65%);
}
.social-section-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.social-card.instagram::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.whatsapp::before  { background: #25D366; }
.social-card.email::before     { background: var(--gold); }

.social-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.10);
}
.social-card.instagram:hover { border-color: rgba(220,39,67,0.40); box-shadow: 0 12px 40px rgba(220,39,67,0.15); }
.social-card.whatsapp:hover  { border-color: rgba(37,211,102,0.40); box-shadow: 0 12px 40px rgba(37,211,102,0.15); }
.social-card.email:hover     { border-color: rgba(201,168,76,0.40); box-shadow: 0 12px 40px rgba(201,168,76,0.15); }
.social-card:hover::before   { transform: scaleX(1); }

.social-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-card.instagram .social-card-icon {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-card.whatsapp .social-card-icon  { background: #25D366; }
.social-card.email .social-card-icon     { background: rgba(201,168,76,0.20); border: 2px solid rgba(201,168,76,0.40); }

.social-card-icon svg {
  width: 36px; height: 36px;
  fill: #ffffff;
  display: block;
}
.social-card.email .social-card-icon svg { fill: var(--gold); }

.social-card-name {
  font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: -0.3px;
}
.social-card-handle {
  font-size: 14px; color: var(--text-muted);
  margin-top: -8px;
}
.social-card-desc {
  font-size: 13.5px; line-height: 1.65;
  color: var(--text-sub); text-align: center;
}
.social-card-cta {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Footer social icons SVG */
.footer-social-link svg {
  width: 22px; height: 22px;
  display: block;
  fill: rgba(255,255,255,0.90);
  transition: fill var(--t);
}
.footer-social-link:hover svg { fill: #fff; }

/* Header social icons */
.header-socials {
  display: flex; align-items: center; gap: 6px; margin-left: 8px;
}
.header-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.header-social-link svg {
  width: 17px; height: 17px;
  display: block;
  fill: rgba(255,255,255,0.85);
  transition: fill var(--t);
}
.header-social-link:hover { transform: translateY(-2px); }
.header-social-link.instagram:hover { background: #E1306C; border-color: #E1306C; }
.header-social-link.instagram:hover svg { fill: #fff; }
.header-social-link.whatsapp:hover  { background: #25D366; border-color: #25D366; }
.header-social-link.whatsapp:hover svg { fill: #fff; }

@media (max-width: 768px) {
  .social-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .header-socials { display: none; } /* esconde no mobile – usa menu hambúrguer */
}
@media (max-width: 480px) {
  .social-card { padding: 28px 20px; }
}


/* ══════════════════════════════════════════════════════════════
   CARD ICON SURFACE (home features)
══════════════════════════════════════════════════════════════ */
.card-icon-surface {
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 24px;
}

/* ══════════════════════════════════════════════════════════════
   VALORES SECTION (Quem Somos)
══════════════════════════════════════════════════════════════ */
.valor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--t) var(--ease);
}
.valor-card:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.valor-icon {
  font-size: 32px; margin-bottom: 16px; display: block;
}
.valor-title {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.valor-text {
  font-size: 14px; line-height: 1.75;
  color: var(--text-sub);
}

/* Destaques (Contato) */
.destaque-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.destaque-item:last-child { border-bottom: none; }
.destaque-check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
}
.destaque-text {
  font-size: 14px; color: var(--text-sub);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .modelos-grid { grid-template-columns: 1fr; }
  .etapas-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .etapas-grid::before { display: none; }
  .diferenciais-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-clean-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-clean:nth-child(2) { border-right: none; }
  .stat-clean:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-clean:nth-child(3), .stat-clean:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 110px; }
  .logo-img { height: 96px; }
  .container { padding: 0 20px; }
  .section  { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  /* Header */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--brand);   /* azul da logo no mobile */
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    max-height: 0; overflow: hidden;
    border-bottom: 2px solid var(--gold);
    transition: max-height 0.35s var(--ease);
    box-shadow: 0 8px 24px rgba(0,0,0,0.40);
  }
  .nav-menu.open { max-height: 400px; }
  .nav-menu a { padding: 14px 24px; border-radius: 0; margin: 0; }
  .btn-header-cta { margin: 12px 20px 16px; text-align: center; background: var(--gold); color: var(--brand-deeper); border-color: var(--gold); }

  /* Hero */
  .hero-clean-inner { padding: 64px 0 80px; }
  .hero-clean-title { letter-spacing: -1px; }
  .hero-clean-actions { flex-direction: column; }
  .hero-clean-actions .btn { width: 100%; justify-content: center; }
  .hero-clean-trust { gap: 24px; }
  .trust-item strong { font-size: 20px; }

  /* Pilares */
  .pilares-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-clean-grid { grid-template-columns: 1fr 1fr; }
  .stat-clean { padding: 28px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-clean:nth-last-child(-n+2) { border-bottom: none; }
  .stat-clean:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-tagline { max-width: 100%; }

  /* Statement */
  .statement-block { padding: 32px 24px; }

  /* Processo */
  .processo-grid::before { display: none; }
  .processo-item { gap: 20px; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }

  /* Legal card */
  .legal-card {
    flex-direction: column; gap: 28px; padding: 28px 24px;
  }
  .legal-photo { width: 100%; height: 220px; }
  .legal-photo-placeholder { width: 100%; }

  /* CTA Final */
  .cta-final { padding: 80px 0; }
  .cta-final-actions { flex-direction: column; align-items: center; }

  /* Page hero */
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-clean-trust { flex-direction: column; gap: 20px; }
  .trust-sep { display: none; }
  .etapas-grid { grid-template-columns: 1fr; }
}/* End custom CSS */