/* HX Express — Components */

/* ─── NAV (sticky) ─── */
nav:not(.section-dots) {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-bottom .25s ease, box-shadow .25s ease;
}
nav:not(.section-dots).is-scrolled {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
nav:not(.section-dots).is-scrolled .nav-logo { color: var(--black); }
nav:not(.section-dots).is-scrolled .nav-links a { color: var(--black); }
nav:not(.section-dots).is-scrolled .nav-links a:hover { color: var(--amber); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--amber-dim); color: #fff; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  --sx: 50%; --sy: 50%;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 600px at var(--sx) var(--sy), rgba(255,85,0,.10), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}
.hero.has-spot::after { opacity: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(245,166,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(245,166,35,0.04) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black, transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 720px; }

/* HERO FORM */
.hero-form {
  background: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  animation: fadeUp 0.6s 0.4s ease both;
  box-shadow:
    0 30px 80px rgba(0,0,0,.5),
    0 4px 20px rgba(255,85,0,.12);
}
.hero-form::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, var(--amber), transparent 50%, var(--amber-dim));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}

.hero-form-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--amber-glow);
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,85,0,.3);
}
.hero-form-pulse {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 var(--amber);
}

.hero-form-head { display: flex; flex-direction: column; gap: 6px; }
.hero-form-head h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  line-height: 1.05;
  color: var(--black);
}
.hero-form-head h3 .accent { color: var(--amber); }
.hero-form-head p {
  font-size: 0.85rem;
  color: #666;
}

.hero-form-fields { display: flex; flex-direction: column; gap: 12px; }
.hero-field {
  position: relative;
  display: flex; align-items: center;
  background: #f7f7f5;
  border: 1px solid #e8e6e0;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.hero-field:focus-within {
  border-color: var(--amber);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,85,0,.08);
}
.hero-field-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  color: var(--muted);
  flex-shrink: 0;
}
.hero-field:focus-within .hero-field-icon { color: var(--amber); }
.hero-field input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 14px 14px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  width: 100%;
  min-width: 0;
}
.hero-field input::placeholder { color: #aaa; }
.hero-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hero-form-submit {
  border: 0; cursor: pointer;
  margin-top: 4px;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 18px 28px;
}

.hero-form-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #888;
}
.hero-form-foot svg { color: #2ecc71; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-glow);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 16px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--white);
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent { color: var(--amber); display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-top: 28px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex; align-items: center; gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stat-row {
  display: flex; gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
}
.hero-stat p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}
.marquee-item span { color: var(--amber); font-size: 1.2rem; }

/* ─── BENEFITS ─── */
.benefits { background: var(--dark); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.benefit-card {
  background: var(--card);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.benefit-card:hover { border-color: rgba(245,166,35,0.4); }
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.benefit-card:hover .benefit-num { color: rgba(245,166,35,0.2); }
.benefit-icon {
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.benefit-card:hover .benefit-icon { opacity: 1; }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.benefit-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ─── HOW IT WORKS ─── */
.how {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.how-left { position: static; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.how-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}
.how-step:hover .step-num { color: var(--amber); }
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.step-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--dark); }
.testi-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(245,166,35,0.3); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--amber);
  line-height: 0.6;
  opacity: 0.3;
  margin-bottom: 24px;
}
.testi-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 32px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber-glow);
  border: 2px solid rgba(245,166,35,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber);
}
.testi-name { font-weight: 600; font-size: 0.95rem; }
.testi-role { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 4px; }

/* ─── FAQ ─── */
.faq-section { background: var(--black); }
.faq-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-side { position: sticky; top: 120px; }
.faq-side .section-title { margin-top: 4px; line-height: 0.95; }
.faq-side-text {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}
.faq-list { width: 100%; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber); }
.faq-q .icon {
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-a {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 28px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }

/* ─── FINAL CTA ─── */
.final-cta {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(245,166,35,0.12) 0%, transparent 60%),
    var(--dark);
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content: 'HX';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(200px, 40vw, 400px);
  color: rgba(245,166,35,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -10px;
}
.final-cta .section-title { margin: 0 auto; text-align: center; }
.final-cta p { color: var(--muted); font-size: 1rem; margin: 24px auto 40px; max-width: 460px; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer .nav-logo { font-size: 1.4rem; }
footer p { font-size: 0.8rem; color: var(--muted); }

/* ─── ABOUT HX (2 columns full edge: text + photo) ─── */
.about-hx { background: var(--dark); padding: 0; overflow: hidden; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 640px;
}
.about-content {
  padding: 96px 64px;
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
  width: 100%;
}
.about-content .section-label { margin-bottom: 0; }
.about-content .section-title { margin: 0; }
.about-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 8px 0;
}
.about-stat {
  background: var(--card);
  padding: 28px 24px;
  text-align: left;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-media {
  position: relative;
  background: var(--card);
  overflow: hidden;
  min-height: 480px;
}
.about-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-deco {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(255,85,0,.18), transparent 60%);
}
.about-deco-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--amber);
  padding: 14px 20px;
  display: flex; flex-direction: column;
  pointer-events: auto;
}
.about-deco-badge strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  line-height: 1;
}
.about-deco-badge span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-deco-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,85,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,85,0,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.cidades { text-align: center; margin-bottom: 64px; }
.cidades .section-label { display: inline-block; margin-bottom: 24px; }
.cidades-grid {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.cidade-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: border-color .25s, color .25s;
}
.cidade-pill:hover { border-color: var(--amber); color: var(--amber); }
.cidade-pill svg { color: var(--amber); }
.faixa-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  border-left: 3px solid var(--amber);
}
.faixa-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.faixa-valor {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}
.faixa-valor .dim { color: var(--muted); margin: 0 6px; }

/* ─── COMPARISON ─── */
.comparison {
  background:
    radial-gradient(ellipse 50% 35% at 50% 0%, rgba(255,85,0,.15) 0%, transparent 65%),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    var(--black);
  background-size: auto, 50px 50px, 50px 50px, auto;
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.comparison::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, var(--black) 100%);
  pointer-events: none;
}
.comparison > * { position: relative; z-index: 1; }
.comparison-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.comparison-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.comparison-table {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: 0; }
.comp-row > div {
  padding: 22px 24px;
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
}
.comp-row > div + div { border-left: 1px solid var(--border); }
.comp-row.comp-head > div {
  background: var(--dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.comp-row.comp-head > div.comp-hx { color: var(--amber); }
.comp-row > div.comp-hx { color: var(--white); }
.comp-row > div.comp-hx svg { color: var(--amber); }
.comp-row > div.comp-other { color: var(--muted); }
.comp-row > div.comp-other svg { color: #b00; }

/* ─── FIPE MODAL ─── */
.fipe-modal {
  position: fixed; inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeUp .25s ease both;
  overflow-y: auto;
}
.fipe-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  color: var(--black);
  padding: 40px 32px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,85,0,.3);
  border-radius: 8px;
}
.fipe-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}
.fipe-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: #f5f5f5;
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--black);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.fipe-close:hover { background: var(--amber); color: #fff; transform: rotate(90deg); }
.fipe-head {
  text-align: center;
  margin-bottom: 24px;
}
.fipe-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
.fipe-head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  margin: 10px 0 8px;
  color: var(--black);
}
.fipe-head p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}
.fipe-fields { display: flex; flex-direction: column; gap: 12px; }
.fipe-fields select {
  width: 100%;
  background: #f7f7f5;
  border: 1px solid #e0e0e0;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  cursor: pointer;
  appearance: none;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M0 0h12L6 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: border-color .2s, background-color .2s;
}
.fipe-fields select:focus { border-color: var(--amber); background-color: #fff; }
.fipe-fields select:disabled { opacity: .5; cursor: not-allowed; }
.fipe-loading {
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}
.fipe-result {
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--amber-glow), transparent);
  border: 1px solid rgba(255,85,0,.3);
  border-radius: 8px;
  text-align: center;
}
.fipe-result-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
.fipe-result-value {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
  margin: 10px 0 12px;
  letter-spacing: -0.5px;
}
.fipe-result-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 18px;
}
.fipe-result-cta {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.fipe-disclaimer {
  margin-top: 14px;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.5;
  text-align: center;
}

/* ─── BRANDS (fundo branco, logos escuras) ─── */
.brands {
  background: #fff;
  color: var(--black);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.brands::before, .brands::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.brands::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.brands::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.brands-head { text-align: center; margin-bottom: 32px; padding: 0 40px; }
.brands-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
.brands-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.5px;
  margin-top: 10px;
  color: var(--black);
}
.brands-head h3 .accent { color: var(--amber); }
.brands-marquee { overflow: hidden; }
.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
  gap: 0;
}
.brand-item {
  display: grid; place-items: center;
  padding: 0 56px;
  height: 100px;
  flex-shrink: 0;
  transition: opacity .25s ease, transform .25s ease;
  opacity: .55;
}
.brand-item:hover { opacity: 1; transform: scale(1.08); }
.brand-item img { width: 100px; height: 100px; object-fit: contain; display: block; }

/* ─── PARTNERS ─── */
.partners { background: var(--dark); padding: 60px 0; }
.partners-head { text-align: center; margin-bottom: 32px; padding: 0 40px; }
.partners-head h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-top: 8px;
}
.partners-strip { overflow: hidden; }
.partners-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--muted);
  padding: 0 56px;
  opacity: .55;
  transition: color .25s, opacity .25s;
  white-space: nowrap;
}
.partner-logo:hover { color: var(--amber); opacity: 1; }

/* ─── GALLERY ─── */
.gallery { background: var(--black); }
.gallery-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.gallery-head p { color: var(--muted); margin-top: 16px; font-size: 1rem; }

.gallery-marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.gallery-track--ltr { animation: gallery-scroll-ltr 60s linear infinite; }
.gallery-track--rtl { animation: gallery-scroll-rtl 60s linear infinite; }

@keyframes gallery-scroll-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes gallery-scroll-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.gallery-item {
  position: relative;
  flex: 0 0 auto;
  height: 420px;
  overflow: hidden;
  background: var(--card);
  border-radius: 4px;
}
.gallery-item img {
  height: 100%; width: auto; display: block;
}
.gallery-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--amber);
  color: var(--black);
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-cta-center { text-align: center; margin-top: 40px; }

/* ─── LOCALIZAÇÃO (header em cima, mapa embaixo full width) ─── */
.loc-section {
  background: var(--dark);
  padding: 100px 40px;
}
.loc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.loc-header {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.loc-header .section-title { margin: 0; }
.loc-map {
  width: 100%;
  height: 480px;
  border: 1px solid rgba(255,255,255,.4);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.loc-map iframe {
  display: block; width: 100%; height: 100%;
  filter: grayscale(.4) invert(.92) hue-rotate(180deg) contrast(.85);
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--white);
}
.sticky-cta span { display: block; font-size: 0.78rem; color: var(--muted); }
.sticky-cta .btn-primary { padding: 12px 24px; font-size: 0.85rem; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 80px;
  z-index: 998;
  background: rgba(10,10,10,.95);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  max-width: 720px; margin: 0 auto;
  animation: fadeUp 0.5s ease both;
}
.cookie-banner p {
  font-size: 0.85rem; line-height: 1.5;
  color: var(--muted);
  flex: 1; min-width: 220px; margin: 0;
}
.cookie-banner-btn {
  background: var(--amber); color: var(--black);
  border: 0; padding: 10px 18px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
}

/* ─── SECTION DOTS ─── */
.section-dots {
  position: fixed;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 6px;
  width: auto;
  background: rgba(22,22,22,.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}
.section-dots-item {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  text-decoration: none;
}
.section-dots-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .25s ease, width .25s ease, height .25s ease;
}
.section-dots-item:hover .section-dots-dot {
  background: var(--amber);
  width: 8px; height: 8px;
}
.section-dots-item.is-active .section-dots-dot {
  background: var(--amber);
  width: 10px; height: 10px;
}
.section-dots-label {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--card);
  color: var(--white);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
}
.section-dots-item:hover .section-dots-label {
  opacity: 1; transform: translateX(0);
}

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.25s;
  animation: fadeUp 0.6s 0.8s ease both;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* Helper: keep text together */
.nowrap { white-space: nowrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }

  /* HERO centered on mobile */
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; text-align: center; align-items: center; display: flex; flex-direction: column; }
  .hero h1 { text-align: center; font-size: clamp(3.4rem, 14vw, 5.5rem); line-height: 0.95; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; font-size: 1rem; }
  .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-form { padding: 24px; }
  .hero-form-head h3 { font-size: 1.4rem; }

  .benefits-grid { grid-template-columns: 1fr; gap: 2px; }
  .how { grid-template-columns: 1fr; gap: 48px; }
  .how-left { position: static; }

  /* BRANDS title - balance to avoid orphan word */
  .brands-head h3 { text-wrap: balance; line-height: 1.15; max-width: 320px; margin-left: auto; margin-right: auto; }

  /* COMPARISON title - smaller and centered */
  .comparison-head .section-title { font-size: clamp(2rem, 7vw, 2.6rem); }

  /* TESTIMONIALS header centered */
  .testi-header { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .testi-grid { grid-template-columns: 1fr; }

  .hero-stat-row { gap: 24px; flex-wrap: wrap; }

  /* FAQ centered on mobile */
  .faq-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 8px; }
  .faq-side { position: static; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .faq-side .section-title { text-align: center; }
  .faq-side-text { text-align: center; }
  .faq-list { padding-right: 8px; }
  .faq-q { font-size: 0.95rem; word-break: break-word; padding-right: 4px; }
  .faq-q .icon { flex-shrink: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 3rem; }
  .about-inner { grid-template-columns: 1fr; min-height: auto; }
  .about-content { padding: 56px 24px; max-width: 100%; }
  .about-media { min-height: 320px; }
  .faixa-box { flex-direction: column; align-items: flex-start; padding: 28px; }
  .faixa-valor { font-size: 2rem; }
  .comp-row { grid-template-columns: 1fr; }
  .comp-row > div + div { border-left: 0; border-top: 1px solid var(--border); }
  .comp-row.comp-head { display: none; }
  .gallery-marquee .gallery-track--rtl { display: none; }
  .gallery-item { height: 300px; }

  /* LOCATION centered on mobile */
  .loc-section { padding: 56px 20px; }
  .loc-header { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .loc-map { height: 320px; }

  .section-dots { display: none; }
  .sticky-cta { padding: 12px 16px; }
  .sticky-cta strong { font-size: 0.9rem; }
  .sticky-cta span { font-size: 0.7rem; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-item { height: 260px; }
  .stats-grid { grid-template-columns: 1fr; }
}
