/* ===================================================
   GRUPO OPEN CONSÓRCIOS — Stylesheet
   Design: Sofisticação Institucional Moderna
   =================================================== */

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* Colors */
  --white: #fff;
  --black:     #171717;
  --navy:      #0A2540;
  --navy-mid:  #1C1C1C;
  --navy-light:#0F0F0F;
  --gold:      #B8976E;
  --gold-light:#C9AB84;
  --gold-dark: #9E7D58;
  --graphite:  #2D3436;
  --white:     #FFFFFF;
  --gray-100:  #F5F6F7;
  --gray-200:  #E8EAED;
  --gray-300:  #C5C9D2;
  --gray-400:  #8A9AAF;
  --gray-500:  #212020;
  --green:     #1A936F;
  --red:       #e05a5a;

  /* Typography */
  --font-display: 'Montserrat', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1280px;
  --pad-x:       clamp(24px, 5vw, 80px);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(10,37,64,.12);
  --shadow-md:   0 8px 32px rgba(10,37,64,.18);
  --shadow-lg:   0 20px 60px rgba(10,37,64,.25);
  --shadow-glow: 0 0 40px rgba(184,151,110,.25);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.22,1,.36,1);
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--graphite);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── CONTAINER ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
}
.btn:hover::before { background: rgba(255,255,255,.08); }

.btn--sm  { font-size: .85rem; padding: .55rem 1.2rem; }
.btn--md  { font-size: .95rem; padding: .75rem 1.6rem; }
.btn--lg  { font-size: 1rem;   padding: .9rem 2rem; }
.btn--xl  { font-size: 1.05rem; padding: 1rem 2.4rem; }
.btn:not(.btn--sm):not(.btn--md):not(.btn--lg):not(.btn--xl) { font-size: .95rem; padding: .75rem 1.6rem; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,151,110,.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,151,110,.55);
}
.btn--gold:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── SECTION TAGS & TITLES ──────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center.section-sub { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-white {
  background: linear-gradient(135deg, var(--white), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── AOS (Animate On Scroll — native CSS fallback) ── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-down"] { transform: translateY(-24px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ─── HEADER ─────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s;
  padding: 0;
}
.header.scrolled {
  background: rgba(33,33,33,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
}
.header.scrolled .header__inner { height: 68px; }

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-mark { display: flex; align-items: center; }
.logo-icon svg { display: block; filter: drop-shadow(0 0 8px rgba(184,151,110,.4)); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-group {
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gray-400);
}
.logo-open {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--gold);
}

/* Nav */
.header__nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: .25rem;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: all .25s var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .85rem; right: .85rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.header__cta { margin-left: 1rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(33,33,33,.98);
  backdrop-filter: blur(20px);
  transform: translateY(-100%) scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all .4s var(--ease);
  z-index: 999;
  padding: 2rem var(--pad-x);
}
.mobile-menu.open {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .8rem 1rem;
  border-radius: 8px;
  display: block;
  transition: all .25s var(--ease);
}
.mobile-nav-link:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-cta { margin-top: 1rem; display: block; text-align: center; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg-img { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(48,48,48,.88) 0%,
    rgba(48,48,48,.70) 50%,
    rgba(48,48,48,.50) 100%
  );
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* 3D geometric shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border: 1px solid rgba(184,151,110,.15);
  border-radius: 4px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape--1 {
  width: 200px; height: 200px;
  top: 15%; right: 10%;
  transform: rotate(20deg);
  animation-delay: 0s;
}
.shape--2 {
  width: 120px; height: 120px;
  bottom: 25%; right: 18%;
  transform: rotate(-30deg);
  animation-delay: 2s;
}
.shape--3 {
  width: 80px; height: 80px;
  top: 40%; right: 25%;
  transform: rotate(10deg);
  animation-delay: 4s;
  border: 1px solid rgba(184,151,110,.1);
}

@keyframes floatShape {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50%       { transform: rotate(20deg) translateY(-15px); }
}
.shape--2 { animation-name: floatShape2; }
@keyframes floatShape2 {
  0%, 100% { transform: rotate(-30deg) translateY(0); }
  50%       { transform: rotate(-30deg) translateY(-10px); }
}
.shape--3 { animation-name: floatShape3; }
@keyframes floatShape3 {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50%       { transform: rotate(10deg) translateY(-20px); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 1150px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__proposition {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
}
.proposition-icon {
  width: 28px; height: 28px;
  background: rgba(184,151,110,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero stats */
.hero__stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  width: fit-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }
.hero-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat__suffix {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 2px;
}
.hero-stat__label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
  letter-spacing: .05em;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
  margin: .25rem 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 2;
}
.hero__scroll span {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  width: 1px; height: 50%;
  background: var(--gold);
  top: -50%;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -50%; }
  100% { top: 100%; }
}





        /* Administradoras */

.empresas__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.ticker {
  background: var(--acid);
  padding: .7rem 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-inner {
  display: inline-flex;
  animation: tick 20s linear infinite
}

.ticker-item {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--ink);
  padding: 0 3rem
}

.ticker-sep {
  color: rgba(0, 0, 0, .3)
}

@keyframes tick {
  from {
    transform: translateX(18%)
  }

  to {
    transform: translateX(-140%)
  }
}


/* ─── SOBRE ──────────────────────────────────────── */
.sobre {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: 4rem;
}

.sobre__lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  font-style: italic;
}
.sobre__body {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline__item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.81rem; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(184,151,110,.3);
}
.timeline__year {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.timeline__content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .3rem;
}
.timeline__content p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Building card */
.building-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease);
}
.building-card:hover { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-4px); }
.building-card__img { width: 100%; display: block; }
.building-card__badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(33,33,33,.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(184,151,110,.3);
}

/* Numbers bar */
.numbers-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  gap: 0;
}
.number-item {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.number-item + .number-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.number-item__val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}
.number-item__suf {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
}
.number-item__label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
  letter-spacing: .05em;
}

/* ─── CONSÓRCIOS ─────────────────────────────────── */
.consorcios {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.consorcios::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184,151,110,.08) 0%, transparent 70%);
  pointer-events: none;
}

.consorcios__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.consorcio-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease-out);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  height: 100%;

}
.consorcio-card:hover {
  transform: translateY(-10px) perspective(800px) rotateX(2deg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(184,151,110,.3);
}

.consorcio-card__glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(184,151,110,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.consorcio-card:hover .consorcio-card__glow { opacity: 1; }

.consorcio-card__icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(184,151,110,.15), rgba(184,151,110,.05));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184,151,110,.2);
  color: var(--gold);
  transition: transform .4s var(--ease);
}
.consorcio-card:hover .consorcio-card__icon {
  transform: rotateY(15deg) scale(1.05);
}

.consorcio-card__tag {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: .3rem .7rem;
  border-radius: 20px;
}

.consorcio-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: .75rem;
}
.consorcio-card__desc {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.consorcio-card__range {
  background: var(--gray-100);
  border-radius: 10px;
  padding: .85rem 1.2rem;
  margin-bottom: 1.5rem;
}
.range-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: .2rem;
}
.range-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

.consorcio-card__benefits {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.consorcio-card__benefits li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--graphite);
}

.consorcio-card__cta { width: 100%; justify-content: center; margin-top: auto;}

/* ─── HOW IT WORKS ───────────────────────────────── */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.how-it-works .section-tag,
.how-it-works .section-title,
.how-it-works .section-sub { color: var(--white); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,.65); }

.how-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.how-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  pointer-events: none;
}

.step {
  position: relative;
  text-align: center;
}
.step__number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(184,151,110,.4), 0 0 0 6px rgba(184,151,110,.12);
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease);
}
.step:hover .step__number { transform: scale(1.1) rotate(-5deg); }
.step__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.step__content p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* Comparative table */
.comparativo {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.comparativo__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}
.comparativo__table { display: flex; flex-direction: column; gap: .25rem; }
.comp-table-header,
.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
}
.comp-table-header {
  padding: .75rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.comp-col-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  padding: .4rem .8rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
}
.comp-row {
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: .9rem 1rem;
  align-items: center;
  transition: background .2s;
}
.comp-row:hover { background: rgba(255,255,255,.07); }
.comp-col { font-size: .9rem; }
.comp-col--feature { color: rgba(255,255,255,.75); font-weight: 600; }
.comp-win { color: var(--green); font-weight: 700; display: flex; align-items: center; gap: .4rem; }
.comp-lose { color: rgba(255,255,255,.45); }
.comp-neutral { color: rgba(255,255,255,.55); }

/* ─── SIMULADOR ──────────────────────────────────── */
.simulador {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
  overflow: hidden;
}

.simulator-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--gray-200);
}

.sim-step { display: none; }
.sim-step.active { display: block; }

.sim-step__header { margin-bottom: 2rem; }
.sim-step__num {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.sim-step__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
}

/* Type selector */
.sim-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.sim-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  transition: all .3s var(--ease);
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-500);
}
.sim-type-icon {
  width: 60px; height: 60px;
  background: var(--gray-100);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: all .3s var(--ease);
}
.sim-type-btn.selected {
  border-color: var(--gold);
  color: var(--black);
  background: rgba(184,151,110,.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,151,110,.2);
}
.sim-type-btn.selected .sim-type-icon {
  background: linear-gradient(135deg, rgba(184,151,110,.2), rgba(184,151,110,.08));
  color: var(--gold);
}
.sim-type-btn:hover:not(.selected) { border-color: var(--gray-300); transform: translateY(-2px); }

/* Ranges */
.sim-inputs { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2rem; }
.sim-field label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .75rem;
}
.sim-range-wrapper { display: flex; flex-direction: column; gap: .6rem; }
.sim-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(184,151,110,.4);
  border: 3px solid var(--white);
  transition: transform .2s var(--ease);
}
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sim-range-display {
  display: flex;
  justify-content: flex-end;
}
.sim-range-display span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

.sim-nav { display: flex; gap: 1rem; justify-content: space-between; }

/* Result cards */
.sim-result__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.sim-result-card {
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .3s var(--ease);
}
.sim-result-card:hover { transform: translateY(-4px); }
.sim-result-card--open {
  background: linear-gradient(135deg, var(--navy-light), var(--black));
  border: 1px solid rgba(184,151,110,.25);
}
.sim-result-card--bank {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.src-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.sim-result-card--open .src-label { color: var(--gold); }
.sim-result-card--bank  .src-label { color: var(--gray-400); }
.src-parcel {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: .4rem;
}
.sim-result-card--open .src-parcel { color: var(--white); }
.sim-result-card--bank  .src-parcel { color: var(--graphite); }
.src-total {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.sim-result-card--open .src-total { color: rgba(255,255,255,.6); }
.sim-result-card--bank  .src-total { color: var(--gray-400); }
.src-economy {
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--green);
}

.sim-result__disclaimer {
  font-size: .78rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 2rem;
}
.sim-result__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Progress bar */
.sim-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gray-200);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.sim-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--gold-light), var(--gold-dark));
  transition: width .4s var(--ease-out);
}

/* ─── DIFERENCIAIS ───────────────────────────────── */
.diferenciais {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diferencial-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.diferencial-card:hover::before { transform: scaleX(1); }
.diferencial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.diferencial-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(10,37,64,.08), rgba(10,37,64,.04));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(184,151,110,.15);
  transition: all .4s var(--ease);
}
.diferencial-card:hover .diferencial-card__icon {
  background: linear-gradient(135deg, rgba(184,151,110,.2), rgba(184,151,110,.08));
  transform: rotate(-6deg) scale(1.05);
}
.diferencial-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .6rem;
}
.diferencial-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── DEPOIMENTOS ────────────────────────────────── */
.depoimentos {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.depoimentos .section-tag,
.depoimentos .section-title { color: var(--white); }
.depoimentos__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
#depoimentosCanvas {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}

.depoimentos__slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  width: 100%;
}

.depoimentos__track {
  display: flex;
  width: 100%;
  transition: transform .5s var(--ease-out);
  will-change: transform;
}

.depoimento-card {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;

  box-sizing: border-box;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;

  transition: all .4s var(--ease);
}
.dep-dot {
  cursor: pointer;
  border: none;
}
.depoimento-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.depoimento-card__quote { margin-bottom: 1.25rem; }
.depoimento-card__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.75rem;
  word-break: break-word;
}
.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.depoimento-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.depoimento-card__author strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}
.depoimento-card__author span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.depoimento-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  white-space: nowrap;
}

/* Slider controls */
.depoimentos__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.dep-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.dep-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.dep-dots { display: flex; gap: .5rem; }
.dep-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .3s var(--ease);
}
.dep-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Live proof */
.live-proof {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.live-proof__badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(26,147,111,.4); }
  50%       { opacity: .8; box-shadow: 0 0 0 6px rgba(26,147,111,0); }
}
.live-proof__feed { position: relative; flex: 1; }
.live-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  transition: opacity .5s;
}
.live-item.active { opacity: 1; position: static; }


.depoimento-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.live-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition:
    opacity .5s,
    transform .5s;

  transform: translateY(10px);
}

.live-item.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

/* ─── OBJEÇÕES / FAQ ─────────────────────────────── */
.objecoes {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}

.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-accordion { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon { flex-shrink: 0; transition: transform .35s var(--ease); color: var(--gray-400); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out), padding .3s;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.75;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-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.02'%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");
}
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,151,110,.15), transparent);
  top: -100px; left: -100px;
  animation: glowPulse 6s ease-in-out infinite;
}
.cta-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,147,111,.1), transparent);
  bottom: -100px; right: -50px;
  animation: glowPulse 6s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.1); }
}

.cta-section__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.cta-section__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.cta-section__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-section__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ─── CONTATO ────────────────────────────────────── */
.contato {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* Contact info */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item__icon {
  width: 44px; height: 44px;
  background: rgba(10,37,64,.05);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--black); margin-bottom: .2rem; }
.contact-item p, .contact-item a {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  transition: all .3s var(--ease);
}
.social-link:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10,37,64,.25);
}

/* Contact form */
.contact-form {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  font-size: .92rem;
  color: var(--graphite);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,110,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer { background: var(--black); }
.footer__top { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer__logo .logo-group,
.footer__logo .logo-open,
.footer__logo .logo-sub,
.footer__logo .logo-text { color: var(--white); }

.footer__tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer__col-title {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .25s;
}
.footer__links a:hover { color: var(--white); }
.footer__address {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  font-style: normal;
}
.footer__address a { color: rgba(255,255,255,.55); transition: color .25s; }
.footer__address a:hover { color: var(--white); }

.footer__bottom { padding: 1.5rem 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
}

/* ─── WHATSAPP BUTTON ────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  z-index: 900;
  transition: all .3s var(--ease);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 8px 30px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ─── EXIT INTENT POPUP ──────────────────────────── */
.exit-popup {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.exit-popup.show { opacity: 1; pointer-events: all; }
.exit-popup__overlay {
  position: absolute; inset: 0;
  background: rgba(10,37,64,.7);
  backdrop-filter: blur(6px);
}
.exit-popup__box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(.9);
  transition: transform .3s var(--ease-out);
}
.exit-popup.show .exit-popup__box { transform: scale(1); }
.exit-popup__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--graphite);
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.exit-popup__close:hover { background: var(--gray-200); }
.exit-popup__icon { font-size: 3rem; margin-bottom: 1rem; }
.exit-popup__box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: .75rem;
}
.exit-popup__box p {
  font-size: .92rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.exit-popup__form { display: flex; flex-direction: column; gap: .75rem; }
.exit-popup__form input {
  padding: .9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .92rem;
  outline: none;
}
.exit-popup__form input:focus { border-color: var(--gold); }
.exit-popup__disclaimer { font-size: .75rem; color: var(--gray-400); margin-top: 1rem; }

/* ─── CHAT BUBBLE ────────────────────────────────── */
.chat-bubble {
  position: fixed;
  bottom: 6rem; right: 2rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  max-width: 300px;
  z-index: 800;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: all .4s var(--ease-out);
}
.chat-bubble.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-bubble__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  flex-shrink: 0;
}
.chat-bubble__msg { flex: 1; }
.chat-bubble__msg { font-size: .85rem; color: var(--graphite); line-height: 1.55; margin-bottom: .75rem; }
.chat-bubble__actions { display: flex; flex-direction: column; gap: .4rem; }
.chat-action-btn {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  padding: .4rem .75rem;
  text-align: center;
  transition: background .2s;
}
.chat-action-btn:hover { background: var(--gold); }
.chat-bubble__close {
  position: absolute;
  top: .5rem; right: .6rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.chat-bubble__close:hover { background: var(--gray-200); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .consorcios__cards { grid-template-columns: 1fr 1fr; }
  .numbers-bar { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2)::before,
  .number-item:nth-child(4)::before { display: none; }
  .number-item { padding-bottom: 1.5rem; margin-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .number-item:last-child, .number-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 900px) {
  .nav-list, .header__cta { display: none; }
  .hamburger { display: flex; }
  .sobre__grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .diferenciais__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat { padding: 0 1rem; }

  /* ── Comparativo: layout em cards no mobile ── */
  .comparativo { padding: 1.75rem 1.25rem; }
  .comparativo__table { overflow-x: visible; }
  .comp-table-header { display: none; } /* esconde cabeçalho original */
  .comp-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: .35rem;
    min-width: unset;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: .5rem;
  }
  .comp-col--feature {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: .15rem;
  }
  .comp-col--open {
    font-size: .95rem;
  }
  /* Adiciona rótulos via data-attribute para cada coluna */
  .comp-col--open::before {
    content: 'Grupo Open: ';
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-right: .4rem;
    display: inline;
  }
  .comp-col--bank::before {
    content: 'Banco: ';
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-right: .4rem;
    display: inline;
  }
  .comp-col--bank { font-size: .88rem; }
}

@media (max-width: 640px) {
  .consorcios__cards { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .sim-types { grid-template-columns: 1fr; }
  .sim-result__cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .cta-section__ctas { flex-direction: column; align-items: center; }
  .numbers-bar { grid-template-columns: 1fr; }
  .number-item::before { display: none; }
  .mobile-menu { top: 80px; }
  .sim-nav { flex-direction: column; }
  .live-proof { flex-direction: column; align-items: flex-start; }

  /* ── Hero stats: fix sobreposição com scroll indicator ── */
  .hero__content {
    padding-bottom: 140px; /* espaço suficiente acima do scroll indicator */
  }
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    padding: 1rem 1.25rem;
  }
  .hero-stat {
    flex: 1 1 calc(33.333% - 1px);
    min-width: 80px;
    padding: .6rem .5rem;
    align-items: center;
  }
  .hero-stat__num { font-size: 1.4rem; }
  .hero-stat__label { font-size: .62rem; text-align: center; }
  .hero-stat-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: .4rem 0;
  }
  /* Scroll indicator: esconde texto, mantém só a linha */
  .hero__scroll span { display: none; }
  .hero__scroll { bottom: 1.5rem; gap: 0; }
}

@media (max-width: 480px) {
  .simulator-wrapper { padding: 2rem 1.5rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .cta-section__inner { padding: 0 .5rem; }
  @keyframes tick {
  from {
    transform: translateX(18%)
  }

  to {
    transform: translateX(-240%)
  }
}
}
