/* =========================================
   TAX VERITAS — style.css
   ========================================= */

/* ---------- RESET & VARIABLES ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #15304B;
  --navy-d: #0E2136;
  --navy-l: #1D3D5E;
  --navy-xd: #071420;

  --gold: #C7A148;
  --gold-l: #E8C06A;
  --gold-d: #A0803A;
  --whatsapp: #25D366;

  --white: #FFFFFF;
  --silver: #E5E7EB;
  --muted: #8A98AA;

  --bg-dark: #0C1D2E;
  --bg-card: #162840;

  /* FONTES PADRONIZADAS */
  --ff-primary: 'Verdana', 'Geneva', sans-serif;

  --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-primary);
  background: var(--bg-dark);
  color: var(--silver);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.section-eyebrow {
  font-family: var(--ff-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  color: var(--navy-d);
  font-family: var(--ff-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(199, 161, 72, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199, 161, 72, 0.5);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: transparent;
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1.5px solid rgba(229, 231, 235, 0.2);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: transparent;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(199, 161, 72, 0.1);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.05rem;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 28px;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(12, 29, 46, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--navy-d) !important;
  font-weight: 700 !important;
  border-radius: 5px;
  transition: box-shadow 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(199, 161, 72, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(12, 29, 46, 0.97);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 16px 0;
}

.mobile-menu a {
  padding: 14px 28px;
  font-size: 0.95rem;
  color: var(--silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(199, 161, 72, 0.05);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(21, 48, 75, 0.7) 0%, var(--bg-dark) 70%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(199, 161, 72, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 161, 72, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero>.container {
  display: none;
}

.hero {
  padding-left: max(28px, calc((100vw - 1160px) / 2));
  padding-right: max(28px, calc((100vw - 1160px) / 2));
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(199, 161, 72, 0.12);
  border: 1px solid rgba(199, 161, 72, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.hero-title {
  font-family: var(--ff-primary);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-title .line-italic {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-title .line-bold {
  display: block;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  max-width: 460px;
}

.stat {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

/* hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 0 0 380px;
  margin-left: 60px;
}

.hero-card-stack {
  position: relative;
}

.hcard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(22, 40, 64, 0.85);
  border: 1px solid rgba(199, 161, 72, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  margin-bottom: 16px;
  transition: transform 0.3s, border-color 0.3s;
}

.hcard:hover {
  transform: translateX(6px);
  border-color: rgba(199, 161, 72, 0.4);
}

.hcard strong {
  font-size: 0.95rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.hcard p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.hcard-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(199, 161, 72, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.hcard-glow {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(199, 161, 72, 0.15), transparent 70%);
  pointer-events: none;
}

/* =========================================
   STRIP
   ========================================= */
.strip {
  background: linear-gradient(90deg, var(--navy-d) 0%, var(--navy) 50%, var(--navy-d) 100%);
  border-top: 1px solid rgba(199, 161, 72, 0.15);
  border-bottom: 1px solid rgba(199, 161, 72, 0.15);
  padding: 18px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.strip-inner .sep {
  color: var(--gold);
  font-size: 0.65rem;
}

/* =========================================
   BENEFITS
   ========================================= */
.benefits {
  padding: 100px 0;
  background: var(--bg-dark);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 100px 0 40px;
  background: var(--navy-xd);
  position: relative;
  overflow: hidden;
}

.footer-logo-wrap {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo::before {
  display: none;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--ff-primary);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-l);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  position: relative;
  padding-top: 40px;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(199, 161, 72, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 161, 72, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
  opacity: 1;
}

.bc-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.bc-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-family: var(--ff-primary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-d) 100%);
}

.process-steps {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.process-line {
  position: absolute;
  left: 104px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(199, 161, 72, 0.1));
  transform: translateX(-50%);
}

.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 84px;
  flex-shrink: 0;
  font-family: var(--ff-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  text-align: right;
  transition: opacity 0.3s;
}

.step:hover .step-num {
  opacity: 0.8;
}

.step-content h3 {
  font-family: var(--ff-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 8px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* =========================================
   FOR WHO
   ========================================= */
.for-who {
  padding: 100px 0;
  position: relative;
  background: var(--bg-dark);
}

.fw-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 100% 50%, rgba(21, 48, 75, 0.5), transparent 65%);
}

.fw-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.fw-text {
  flex: 1;
}

.fw-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 24px 0 32px;
  max-width: 480px;
}

.fw-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fw-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--silver);
}

.fw-check {
  color: var(--gold);
  font-size: 0.7rem;
}

.fw-visual {
  flex: 0 0 380px;
}

.fw-quote-card {
  background: var(--bg-card);
  border: 1px solid rgba(199, 161, 72, 0.2);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.fq-top {
  margin-bottom: 16px;
}

.fw-quote-card blockquote {
  font-family: var(--ff-primary);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 28px;
}

.fq-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fq-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-d);
}

.fq-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.fq-author span {
  font-size: 0.78rem;
  color: var(--gold);
}

.fq-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(199, 161, 72, 0.15), transparent 70%);
  pointer-events: none;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-d) 100%);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(199, 161, 72, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(199, 161, 72, 0.35);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--silver);
  text-align: left;
  transition: color 0.25s;
}

.faq-item.open .faq-q {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-a.open {
  max-height: 300px;
}

.faq-a p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* =========================================
   CTA FINAL
   ========================================= */
.cta-final {
  padding: 120px 0;
  position: relative;
  background: var(--navy-d);
  overflow: hidden;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 161, 72, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 161, 72, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--ff-primary);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(199, 161, 72, 0.1);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand .logo-main {
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.25s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
  }

  .fw-inner {
    flex-direction: column;
    gap: 48px;
  }

  .fw-visual {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .hero-card-stack .hcard-1,
  .hero-card-stack .hcard-2,
  .hero-card-stack .hcard-3 {}

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-line {
    display: none;
  }

  .step {
    flex-direction: column;
    gap: 8px;
  }

  .step-num {
    font-size: 2rem;
  }
}

/* =========================================
   IMAGENS — ADIÇÕES AO CSS
   ========================================= */

/* --- HERO com imagem de fundo --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px max(28px, calc((100vw - 1160px)/2)) 80px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.6) brightness(0.4);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(12, 29, 46, 0.92) 0%,
      rgba(12, 29, 46, 0.75) 50%,
      rgba(12, 29, 46, 0.4) 100%);
}

.hero-bg-grid {
  z-index: 2;
}

.hero-accent-line {
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-visual {
  position: relative;
  z-index: 4;
}

/* --- COMO FUNCIONA com imagem lateral --- */
.process-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.process-img-col {
  flex: 0 0 400px;
  position: sticky;
  top: 100px;
}

.process-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.process-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
  transition: filter 0.4s;
}

.process-img-wrap:hover img {
  filter: saturate(1);
}

.process-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 29, 46, 0.7) 100%);
}

.process-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(199, 161, 72, 0.92);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.pib-num {
  font-family: var(--ff-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-d);
  line-height: 1;
}

.pib-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-d);
  line-height: 1.4;
  margin-top: 4px;
  opacity: 0.8;
}

.process-steps-col {
  flex: 1;
  padding-top: 8px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 48px;
}

/* --- PARA QUEM: imagem com quote overlay --- */
.fw-img-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.fw-img-container img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
}

.fw-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 29, 46, 0.1) 0%, rgba(12, 29, 46, 0.85) 60%, rgba(12, 29, 46, 0.97) 100%);
}

.fw-quote-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.fw-quote-over blockquote {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin: 10px 0 20px;
}

/* --- PROVA SOCIAL com imagem de fundo --- */
.social-proof {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.sp-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.4) brightness(0.3);
}

.sp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(12, 29, 46, 0.95) 0%,
      rgba(12, 29, 46, 0.7) 60%,
      rgba(12, 29, 46, 0.85) 100%);
}

.sp-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 80px;
  align-items: center;
}

.sp-cards {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(199, 161, 72, 0.15);
  border-radius: 12px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.sp-card:hover {
  border-color: rgba(199, 161, 72, 0.4);
  transform: translateX(6px);
}

.sp-card-highlight {
  background: rgba(199, 161, 72, 0.12);
  border-color: rgba(199, 161, 72, 0.35);
}

.sp-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.sp-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.sp-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

.sp-text {
  flex: 1;
}

.sp-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 32px;
  max-width: 520px;
}

/* --- CTA FINAL com imagem de fundo --- */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.3) brightness(0.25);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(21, 48, 75, 0.85), rgba(12, 29, 46, 0.97));
}

.cta-bg-grid {
  z-index: 2;
}

.cta-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* --- RESPONSIVE para as novas seções --- */
@media (max-width: 1024px) {
  .process-inner {
    flex-direction: column;
  }

  .process-img-col {
    flex: none;
    width: 100%;
    position: static;
  }

  .process-img-wrap img {
    height: 360px;
  }

  .sp-inner {
    flex-direction: column;
    gap: 48px;
  }

  .sp-cards {
    flex: none;
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .sp-cards {
    flex-direction: column;
  }

  .fw-img-container img {
    height: 400px;
  }
}