/* ============================================================
   VIDE — Crédito Consignado
   Brand: #5B5BD6 purple, #1A1761 navy, #EBEBFF lavender
   ============================================================ */

:root {
  --purple: #5B5BD6;
  --purple-dark: #4a4ab8;
  --purple-light: #7b7be0;
  --navy: #1A1761;
  --navy-light: #252090;
  --lavender: #EBEBFF;
  --lavender-mid: #d4d4f7;
  --white: #ffffff;
  --gray-50: #f8f8fc;
  --gray-100: #f0f0f8;
  --gray-300: #c4c4d8;
  --gray-600: #666680;
  --gray-800: #2a2a40;
  --green: #22c55e;
  --whatsapp: #25D366;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 23, 97, 0.10);
  --shadow-lg: 0 12px 48px rgba(26, 23, 97, 0.18);

  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   LOGO WORDMARK
   Replicates: "vide" Nunito ExtraBold
   — triangle inside v (navy)
   — square dot on i (via dotless ı + absolute rect)
   ============================================================ */
.logo {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  user-select: none;
}

/* Color variants */
.logo--nav  { color: #5B5BD6; }
.logo--footer { color: #EBEBFF; }

/* ── v with triangle ── */
.logo__v {
  position: relative;
  display: inline-block;
}

.logo__tri {
  position: absolute;
  width: 0;
  height: 0;
  border-left:  4px solid transparent;
  border-right: 4px solid transparent;
  border-top:   6px solid #1A1761;
  top:  3px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.logo--footer .logo__tri { border-top-color: #4040a8; }

/* ── i with square dot ── */
.logo__i {
  position: relative;
  display: inline-block;
}

.logo__i-dot {
  position: absolute;
  width:  5px;
  height: 5px;
  border-radius: 1px;   /* slightly rounded square, like in the logo */
  background: currentColor;
  top:  2px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-img--white {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn--primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(91, 91, 214, 0.35); }
.btn--outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn--outline:hover { background: var(--purple); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn--whatsapp:hover { background: #1fba57; transform: translateY(-1px); }
.btn--whatsapp svg, .btn--outline-light svg { width: 20px; height: 20px; flex-shrink: 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); margin-top: 8px; }
.section-header p { margin-top: 12px; color: var(--gray-600); font-size: 1.05rem; max-width: 520px; margin-inline: auto; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.75); }
.section-eyebrow { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); }
.section-eyebrow--light { color: var(--lavender-mid); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91,91,214,0.08);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--gray-600); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--purple); }
.nav__cta { margin-left: 16px; padding: 10px 20px; font-size: 0.9rem; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.2s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--lavender);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--gray-800); text-decoration: none; font-weight: 500; font-size: 1rem; padding: 4px 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--purple) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__bg-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero__eyebrow { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lavender-mid); }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-top: 12px; }
.hero__highlight { color: var(--lavender-mid); }
.hero__subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 16px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero__stats { display: flex; align-items: center; gap: 24px; margin-top: 48px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat__label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.4; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ---- Hero visual: foto + card unidos como uma peça ---- */
.hero__visual {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__person-wrap {
  position: relative;
  flex-shrink: 0;
  height: 360px;
}
.hero__person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__person-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.15) 100%);
}

.hero__card {
  background: var(--white);
  border-radius: 0;
  padding: 28px;
  box-shadow: none;
  position: static;
  width: 100%;
}

.hero__card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hero__card-label { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }
.hero__card-badge { background: var(--lavender); color: var(--purple); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.hero__card-amount { display: flex; align-items: flex-start; gap: 4px; }
.hero__card-currency { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-top: 6px; }
.hero__card-value { font-size: 3.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__card-sub { color: var(--gray-600); font-size: 0.9rem; margin-top: 8px; }
.hero__card-rate-label { font-size: 0.78rem; color: var(--gray-600); margin-top: 8px; }
.hero__card-rate { font-size: 1.5rem; font-weight: 800; color: var(--purple); margin-bottom: 24px; }

/* ============================================================
   PILARES
   ============================================================ */
.pilares { padding: 64px 0; background: var(--gray-50); }
.pilares__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pilar { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--lavender); transition: transform 0.2s, box-shadow 0.2s; }
.pilar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pilar__icon { width: 48px; height: 48px; background: var(--lavender); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--purple); }
.pilar__icon svg { width: 24px; height: 24px; }
.pilar h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pilar p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   SIMULADOR
   ============================================================ */
.simulador {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.simulador .section-header { margin-bottom: 48px; }
.simulador .section-eyebrow { color: var(--lavender-mid); }

.sim__wrapper { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.sim__tabs { display: flex; border-bottom: 2px solid var(--lavender); background: var(--gray-50); overflow-x: auto; }
.sim__tab { flex: 1; min-width: 140px; padding: 16px 20px; background: none; border: none; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--gray-600); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; white-space: nowrap; }
.sim__tab:hover { color: var(--purple); }
.sim__tab.active { color: var(--purple); border-bottom-color: var(--purple); font-weight: 700; }

.sim__body { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.sim__inputs { padding: 40px; border-right: 1px solid var(--lavender); }
.sim__resultado { padding: 40px; background: var(--gray-50); display: flex; align-items: center; justify-content: center; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-group small { display: block; font-size: 0.78rem; color: var(--gray-600); margin-top: 4px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; color: var(--gray-800); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,91,214,0.12); }

.input-currency { display: flex; align-items: center; border: 1.5px solid var(--gray-300); border-radius: 8px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.input-currency:focus-within { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,91,214,0.12); }
.input-currency span { padding: 12px 14px; background: var(--gray-100); color: var(--gray-600); font-size: 0.9rem; font-weight: 600; border-right: 1px solid var(--gray-300); white-space: nowrap; }
.input-currency input { border: none; border-radius: 0; box-shadow: none !important; }
.input-currency--dark span { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border-right-color: rgba(255,255,255,0.2); }

.resultado__empty { text-align: center; color: var(--gray-600); }
.resultado__empty svg { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.4; }
.resultado__empty p { font-size: 0.9rem; line-height: 1.7; }

.resultado__content { width: 100%; }
.resultado__main { text-align: center; background: var(--navy); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.resultado__convenio { display: block; font-size: 0.75rem; font-weight: 700; color: var(--lavender-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; min-height: 16px; }
.resultado__label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.resultado__value { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin: 8px 0; }
.resultado__currency { font-size: 1.2rem; font-weight: 700; color: var(--lavender-mid); margin-top: 6px; }
.resultado__amount { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.resultado__subtext { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---- Split cartão: saque + compra ---- */
.resultado__card-split {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 16px;
}
.card-split__item {
  flex: 1;
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.card-split__item--saque  { background: var(--purple); }
.card-split__item--compra { background: var(--white); }
.card-split__item--saque  .card-split__label { color: rgba(255,255,255,0.75); }
.card-split__item--compra .card-split__label { color: var(--gray-600); }
.card-split__item--saque  .card-split__value { color: var(--white); }
.card-split__item--compra .card-split__value { color: var(--navy); }
.card-split__item--saque  .card-split__sub   { color: rgba(255,255,255,0.55); }
.card-split__item--compra .card-split__sub   { color: var(--gray-300); }
.card-split__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.card-split__value { font-size: 1.15rem; font-weight: 800; margin-top: 2px; }
.card-split__sub   { font-size: 0.68rem; }
.card-split__divider { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.3); flex-shrink: 0; align-self: center; }

.resultado__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.resultado__grid--3 { grid-template-columns: repeat(3, 1fr); }
.resultado__item { background: var(--white); border: 1px solid var(--lavender); border-radius: 8px; padding: 14px; }
.resultado__item-label { display: block; font-size: 0.75rem; color: var(--gray-600); margin-bottom: 4px; }
.resultado__item-value { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy); }

.resultado__disclaimer { font-size: 0.72rem; color: var(--gray-600); margin-top: 10px; text-align: center; }

.resultado__error { text-align: center; color: #dc2626; }
.resultado__error svg { width: 40px; height: 40px; margin-bottom: 12px; }
.resultado__error p { font-size: 0.9rem; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como-funciona { padding: 96px 0; background: var(--white); }
.steps { display: flex; align-items: center; gap: 0; }
.step { flex: 1; background: var(--gray-50); border-radius: var(--radius); padding: 36px 28px; border: 1px solid var(--lavender); }
.step:hover { border-color: var(--purple); }
.step__num { font-family: var(--font-mono); font-size: 2.5rem; font-weight: 700; color: var(--lavender-mid); line-height: 1; margin-bottom: 16px; }
.step__content h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step__content p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
.step__arrow { font-size: 1.5rem; color: var(--purple); padding: 0 12px; flex-shrink: 0; opacity: 0.5; }

/* ============================================================
   PARA VOCÊ
   ============================================================ */
.para-voce { padding: 96px 0; background: var(--gray-50); }

.pv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pv__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--lavender);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pv__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pv__photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.pv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.pv__card:hover .pv__photo img { transform: scale(1.05); }

.pv__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 20px 8px;
}
.pv__card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 20px;
  flex: 1;
}

.pv__rate {
  font-size: 0.82rem;
  color: var(--gray-600);
  padding: 16px 20px 8px;
  border-top: 1px solid var(--lavender);
  margin-top: 16px;
}
.pv__rate strong { color: var(--purple); font-size: 0.95rem; }

.pv__btn {
  margin: 12px 20px 20px;
  font-size: 0.85rem;
  padding: 10px 16px;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { padding: 96px 0; background: var(--lavender); }
.sobre__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre__visual { position: relative; }
.sobre__quote-card { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; position: relative; z-index: 1; }
.sobre__latin { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700; color: var(--white); display: block; line-height: 1.3; }
.sobre__translation { color: var(--lavender-mid); font-size: 0.9rem; margin-top: 12px; font-style: italic; }
.sobre__bg-block { position: absolute; bottom: -16px; right: -16px; width: 100%; height: 100%; background: var(--purple); border-radius: var(--radius-lg); z-index: 0; opacity: 0.3; }
.sobre__content .section-eyebrow { display: block; margin-bottom: 12px; }
.sobre__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 20px; line-height: 1.3; }
.sobre__content p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.sobre__content p strong { color: var(--navy); }
.sobre__content .btn { margin-top: 8px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { padding: 96px 0; background: var(--navy); }
.depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depo__card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; transition: background 0.2s; }
.depo__card:hover { background: rgba(255,255,255,0.1); }
.depo__stars { color: #facc15; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.depo__card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.depo__author { display: flex; align-items: center; gap: 12px; }
.depo__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.2); }
.depo__avatar { width: 48px; height: 48px; background: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--white); flex-shrink: 0; }
.depo__author strong { display: block; color: var(--white); font-size: 0.9rem; }
.depo__author span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 96px 0; background: var(--white); }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1.5px solid var(--lavender); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq__item[open] { border-color: var(--purple); }
.faq__item summary {
  padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.3rem; color: var(--purple); font-weight: 400; flex-shrink: 0; margin-left: 16px; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 24px 20px; color: var(--gray-600); font-size: 0.9rem; line-height: 1.75; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
}
.contato__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contato__content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-top: 8px; margin-bottom: 16px; }
.contato__content p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.contato__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contato__form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contato__form h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-disclaimer { font-size: 0.75rem; color: var(--gray-600); margin-top: 12px; text-align: center; line-height: 1.5; }

.form-success { text-align: center; padding: 20px 0; }
.form-success svg { width: 56px; height: 56px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f0d3a; padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; }
.footer__brand { }
.footer__logo { margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; }
.footer__latin { font-family: var(--font-mono); font-size: 0.78rem; color: var(--purple-light); margin-top: 12px !important; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: var(--lavender-mid); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer__bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; line-height: 1.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero__visual { order: -1; }
  .hero__person-wrap { height: 260px; }

  .pilares__grid { grid-template-columns: 1fr; gap: 16px; }
  .pv__grid { grid-template-columns: repeat(2, 1fr); }
  .sim__body { grid-template-columns: 1fr; }
  .sim__inputs { border-right: none; border-bottom: 1px solid var(--lavender); }
  .sim__resultado { min-height: 300px; }
  .steps { flex-direction: column; gap: 16px; }
  .step__arrow { transform: rotate(90deg); padding: 0; }
  .sobre__inner { grid-template-columns: 1fr; gap: 40px; }
  .depo__grid { grid-template-columns: 1fr; }
  .contato__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__stats { gap: 16px; }
  .stat__num { font-size: 1.4rem; }
  .resultado__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .pv__grid { grid-template-columns: 1fr; }
}
