/* ==========================================================================
   DESIGN SYSTEM & VARIABLES — WEBACK INVEST
   ========================================================================== */
:root {
  /* Brand Colors */
  --purple-dark: #0D0618;
  --purple-brand: #420C6C;
  --purple-mid: #5A1A8A;
  --purple-light: #7B2FBE;
  --magenta: #CC068F;
  --magenta-soft: #E0109F;
  
  /* Backgrounds & Cards */
  --dark: #0D0618;
  --dark-mid: #180A2E;
  --dark-card: #1E0D38;
  --dark-card-hover: #241040;
  --white: #FFFFFF;
  
  /* Text colors */
  --text-white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.70);
  --text-dark: #0D0618;
  --text-dark-muted: #666666;
  
  /* Borders */
  --line: rgba(255, 255, 255, 0.1);
  --line-light: rgba(0, 0, 0, 0.1);
  
  /* Gradients */
  --grad-main: linear-gradient(135deg, #420C6C 0%, #CC068F 100%);
  --grad-dark: linear-gradient(135deg, #0D0618 0%, #2A0A4E 60%, #420C6C 100%);
  --grad-card: linear-gradient(135deg, #1E0D38 0%, #2D1055 100%);
  --grad-text: linear-gradient(135deg, #FF66CC 0%, #CC068F 50%, #7B2FBE 100%);
  
  /* Glows */
  --glow-magenta: 0 0 40px rgba(204, 6, 143, 0.35);
  --glow-magenta-strong: 0 0 50px rgba(204, 6, 143, 0.55);
  
  /* Radii */
  --radius-card: 20px;
  --radius-pill: 100px;
  --radius-sm: 12px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background-color: var(--dark);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 120px 0;
  position: relative;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Top Disclaimer Bar */
.top-disclaimer {
  background: rgba(204, 6, 143, 0.12);
  border-bottom: 1px solid rgba(204, 6, 143, 0.2);
  color: var(--text-muted);
  font-size: 0.6875rem; /* 11px */
}

.top-disclaimer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-disclaimer-badge {
  font-size: 0.625rem; /* 10px */
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--grad-main);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.top-disclaimer-text {
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Sticky Navigation */
nav {
  position: sticky;
  top: 0;
  background-color: #0D0618;
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

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

.nav-cta {
  background: var(--grad-main);
  color: var(--text-white);
  padding: 10px 24px;
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: var(--glow-magenta);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  opacity: 0.9;
  box-shadow: var(--glow-magenta-strong);
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(204, 6, 143, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 12, 108, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.375rem, 5.5vw, 4.25rem); /* clamp(38px, 5.5vw, 68px) */
  color: var(--text-white);
  max-width: 900px;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--magenta);
}

.hero-sub {
  display: flex;
  gap: 0;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-sub > div {
  flex: 1;
  min-width: 160px;
  padding: 0 32px 0 0;
  border-right: 1px solid var(--line);
  margin-right: 32px;
}

.hero-sub > div:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-sub span {
  font-size: 0.6875rem; /* 11px */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.hero-sub strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.625rem; /* 26px */
  display: block;
  color: var(--text-white);
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.btn-lg {
  padding: 16px 36px;
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: var(--grad-main);
  color: var(--text-white);
  box-shadow: var(--glow-magenta);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--glow-magenta-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 16px 0;
}

.btn-ghost:hover {
  color: var(--magenta);
  transform: translateX(4px);
}

/* Section Common Styling */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem); /* clamp(32px, 4.5vw, 56px) */
  color: var(--text-white);
  margin-bottom: 40px;
}

.section-title em {
  font-style: normal;
  color: var(--magenta);
}

.section-body {
  max-width: 640px;
  font-size: 1rem; /* 16px */
  line-height: 1.7;
  color: var(--text-muted);
}

/* Tese Section */
.tese {
  background-color: var(--dark);
}

.tese-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .tese-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.tese-body-block {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--magenta);
  background: var(--dark-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9375rem; /* 15px */
  color: var(--text-white);
  line-height: 1.65;
}

/* Originadora Section */
.originadora {
  background-color: var(--dark-mid);
  position: relative;
}

.orig-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}

.orig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.orig-kpi {
  background: var(--grad-card);
  padding: 32px 28px;
  border-radius: var(--radius-card);
  /* RETIRADO: border: 1px solid var(--line) para retirar visual de IA */
  transition: all 0.3s ease;
  cursor: pointer;
}

.orig-kpi:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(123, 47, 190, 0.15);
}

.orig-kpi .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem; /* 40px */
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.orig-kpi .lbl {
  font-size: 0.75rem; /* 12px */
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* Operational Data in Originadora */
.orig-ops {
  margin-top: 56px;
}

.orig-ops-label {
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 24px;
  display: block;
}

.orig-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.orig-ops-item {
  padding-right: 20px;
}

.orig-ops-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2rem; /* 32px */
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.orig-ops-lbl {
  font-size: 0.75rem; /* 12px */
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.orig-ops-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.6875rem; /* 11px */
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* Clientes & Depoimento Section */
.clientes {
  background-color: var(--dark);
}

.clientes-label {
  text-align: center;
  margin-bottom: 48px;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.cliente-item {
  padding: 24px 16px;
  background: var(--dark-mid);
  /* RETIRADO: border: 1px solid var(--line) para retirar visual de IA */
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.875rem; /* 14px */
  color: var(--text-white);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cliente-item:hover {
  background: rgba(204, 6, 143, 0.15);
  color: var(--magenta-soft);
}

.depoimento {
  background: var(--grad-card);
  /* RETIRADO: border: 1px solid var(--line) para retirar visual de IA */
  border-radius: var(--radius-card);
  padding: 56px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.depoimento p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem); /* clamp(18px, 2.5vw, 24px) */
  color: var(--text-white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 300;
}

.depoimento cite {
  font-size: 0.6875rem; /* 11px */
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-style: normal;
  font-weight: 600;
  display: block;
}

/* Ciclo Section */
.ciclo {
  background-color: var(--dark-mid);
}

.ciclo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.ciclo-item {
  background: var(--grad-card);
  /* RETIRADO: border: 1px solid var(--line) para retirar visual de IA */
  border-radius: var(--radius-card);
  padding: 40px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ciclo-item:hover {
  transform: translateY(-6px);
}

.ciclo-n {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 4rem; /* 64px */
  color: var(--magenta);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}

.ciclo-item h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.25rem; /* 20px */
  color: var(--text-white);
  margin-bottom: 12px;
}

.ciclo-item p {
  font-size: 0.84375rem; /* 13.5px */
  color: var(--text-muted);
  line-height: 1.65;
}

/* Termos Section */
.termos {
  background-color: var(--dark);
}

.termos-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}

.termos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.termo-item {
  background: var(--dark-mid);
  padding: 28px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.termo-item:hover {
  background: var(--dark-card);
}

.termo-k {
  font-size: 0.625rem; /* 10px */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.termo-v {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.3;
}

/* Simulador Section */
.simulador {
  background-color: var(--dark-mid);
  position: relative;
}

.sim-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.sim-panel {
  background: var(--dark-card);
  /* RETIRADO: border: 1px solid var(--line) para retirar visual de IA */
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sim-label {
  font-size: 0.75rem; /* 12px */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sim-input-wrapper {
  position: relative;
  border-bottom: 2px solid var(--line);
  margin-bottom: 24px;
  transition: border-color 0.2s ease;
}

.sim-input-wrapper:focus-within {
  border-color: var(--magenta);
}

.sim-input {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: var(--text-white);
  border: none;
  padding: 8px 0 16px;
  background: transparent;
  outline: none;
}

.sim-range {
  width: 100%;
  margin-bottom: 8px;
  accent-color: var(--magenta);
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem; /* 11px */
  color: var(--text-muted);
  margin-bottom: 40px;
}

.sim-results {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 24px;
}

.sim-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-row:last-of-type {
  border-bottom: none;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 2px solid var(--magenta);
}

.sim-k {
  font-size: 0.84375rem; /* 13.5px */
  color: var(--text-muted);
}

.sim-v {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--text-white);
}

.sim-row:last-of-type .sim-v {
  font-size: 2rem; /* 32px */
  color: var(--magenta-soft);
  text-shadow: 0 0 15px rgba(204, 6, 143, 0.2);
}

.sim-note {
  font-size: 0.6875rem; /* 11px */
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* Garantias Section */
.garantias {
  background-color: var(--dark);
}

.garantias-head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}

.garantias-list {
  display: grid;
  grid-template-columns: 1fr;
}

.gar-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.gar-row:last-child {
  border-bottom: 1px solid var(--line);
}

.gar-n {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem; /* 40px */
  color: var(--magenta);
  line-height: 1;
  opacity: 0.8;
}

.gar-row h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.375rem; /* 22px */
  color: var(--text-white);
  line-height: 1.3;
}

.gar-row p {
  font-size: 0.90625rem; /* 14.5px */
  color: var(--text-muted);
  line-height: 1.7;
}

.gar-highlight {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--dark-mid);
  border-left: 4px solid var(--magenta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.90625rem; /* 14.5px */
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

/* FAQ Section */
.faq {
  background-color: var(--dark-mid);
}

.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.125rem; /* 18px */
  color: var(--text-white);
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--magenta);
}

.faq-plus {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem; /* 28px */
  color: var(--magenta);
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
  flex-shrink: 0;
  margin-left: 24px;
  line-height: 1;
  cursor: pointer;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-a-inner {
  padding-bottom: 28px;
  font-size: 0.90625rem; /* 14.5px */
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}

/* Formulário Section (Demonstrar Interesse) */
.form-section {
  background-color: var(--dark);
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.form-left h2 {
  font-size: clamp(2.125rem, 4vw, 3.5rem); /* clamp(34px, 4vw, 56px) */
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 24px;
}

.form-left h2 em {
  font-style: normal;
  color: var(--magenta);
}

.form-left p {
  font-size: 0.9375rem; /* 15px */
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.form-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.form-list li {
  font-size: 0.84375rem; /* 13.5px */
  color: var(--text-muted);
  padding: 10px 0 10px 28px;
  position: relative;
  line-height: 1.5;
}

.form-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--magenta);
}

/* Light high-contrast conversion form card */
.form-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.8125rem; /* 13px */
  color: var(--text-dark-muted);
  margin-bottom: 32px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 0.625rem; /* 10px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-muted);
  margin-bottom: 8px;
}

.form-field input, .form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-light);
  padding: 8px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem; /* 15px */
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus, .form-field select:focus {
  border-bottom-color: var(--magenta);
}

.form-submit {
  width: 100%;
  background: var(--grad-main);
  color: var(--text-white);
  border: none;
  padding: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 24px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--glow-magenta);
}

.form-submit:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: var(--glow-magenta-strong);
}

.form-submit:disabled {
  background: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.form-legal {
  font-size: 0.6875rem; /* 11px */
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
  font-style: italic;
}

.form-card .form-legal {
  color: var(--text-dark-muted);
}

/* Footer Section */
footer {
  background-color: var(--dark-card);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.75rem; /* 12px */
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.6875rem; /* 11px */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p, .footer-col a {
  display: block;
  font-size: 0.8125rem; /* 13px */
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  line-height: 1.5;
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--magenta);
}

.footer-legal {
  font-size: 0.6875rem; /* 11px */
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-legal p {
  margin-bottom: 12px;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .hero {
    padding: 100px 0 80px;
  }
  
  .orig-head-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .orig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .orig-ops-grid {
    gap: 24px;
  }
  
  .termos-head-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .termos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sim-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .ciclo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .garantias-head-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .nav-inner {
    padding: 16px 24px;
  }
  
  .nav-links {
    display: none; /* Hide links on mobile */
  }
  
  .top-disclaimer-inner {
    padding: 10px 24px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-sub {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-sub > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    padding-right: 0;
    margin-right: 0;
  }
  
  .hero-sub > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .orig-grid {
    grid-template-columns: 1fr;
  }
  
  .orig-ops-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .depoimento {
    padding: 32px 24px;
  }
  
  .ciclo-grid {
    grid-template-columns: 1fr;
  }
  
  .termos-grid {
    grid-template-columns: 1fr;
  }
  
  .gar-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  
  .form-card {
    padding: 32px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) backwards;
}

.hero h1 {
  animation: fadeUp 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.hero-sub {
  animation: fadeUp 1s cubic-bezier(0.2, 0.6, 0.2, 1) 0.15s backwards;
}

.hero-cta {
  animation: fadeUp 1s cubic-bezier(0.2, 0.6, 0.2, 1) 0.3s backwards;
}

/* ==========================================================================
   COOKIE WARNING BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 6, 24, 0.98);
  border-top: 1px solid var(--magenta);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.4s ease;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  font-size: 0.875rem; /* 14px */
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--magenta-soft);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: var(--grad-main);
  color: var(--text-white);
  border: none;
  padding: 10px 28px;
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--glow-magenta);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--glow-magenta-strong);
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}
