:root {
  --cream: #F9F6E9;
  --dark: #3E3E3E;
  --gold-light: #E3C68A;
  --gold-deep: #B99B4F;

  --dark-soft: #4b4b4b;
  --cream-soft: #f1ecd9;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -20px rgba(62, 62, 62, 0.25);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* keeps anchored sections and focused fields clear of the sticky header */
section[id], .field input, .radio-row, .consent {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

p { margin: 0 0 16px; line-height: 1.65; color: var(--dark-soft); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--dark);
  box-shadow: 0 14px 30px -10px rgba(185, 155, 79, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(185, 155, 79, 0.65); }

.btn-outline {
  background: transparent;
  border-color: rgba(249, 246, 233, 0.35);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--dark-soft);
  border-color: rgba(62,62,62,0.15);
}
.btn-ghost:hover { border-color: var(--dark); color: var(--dark); }

.btn-block { width: 100%; }

.btn-primary-small, .btn-ghost-small {
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s var(--ease);
}
.btn-primary-small {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--dark);
}
.btn-primary-small:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(185,155,79,.6); }
.btn-ghost-small { color: var(--dark); border: 1.5px solid rgba(62,62,62,0.18); }
.btn-ghost-small:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn-small-outline { padding: 12px 22px; font-size: 14px; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--gold-deep); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(185, 155, 79, 0.2);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 246, 233, 0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(62, 62, 62, 0.08);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -15px rgba(62,62,62,0.2); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.brand-text strong {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-deep) 10%, var(--gold-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-divider {
  font-size: 16px;
  font-weight: 400;
  color: rgba(62,62,62,0.25);
  line-height: 1;
}
.brand-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-soft);
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--dark-soft);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold-deep);
  transition: width .25s var(--ease);
}
.main-nav a:hover { color: var(--dark); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; padding: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; margin: 0 auto; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--cream);
  padding: 70px 0 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,246,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,246,233,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35;
}
.blob-1 { width: 460px; height: 460px; background: var(--gold-deep); top: -160px; right: -120px; }
.blob-2 { width: 380px; height: 380px; background: var(--gold-light); bottom: -180px; left: -100px; opacity: 0.18; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 60px;
  padding-top: 30px;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  color: var(--cream);
  margin-bottom: 22px;
}
.hero h1 .highlight { color: var(--gold-light); }

.hero-sub {
  font-size: 17px;
  color: rgba(249,246,233,0.72);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 22px; }
.trust-row li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: rgba(249,246,233,0.65);
}
.trust-row svg { width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; }

/* Hero visual card */
.hero-visual { position: relative; }
.quote-card {
  background: rgba(249, 246, 233, 0.06);
  border: 1px solid rgba(249, 246, 233, 0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.quote-card-top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(249,246,233,0.55); margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #6ee7a0;
  box-shadow: 0 0 0 0 rgba(110,231,160,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(110,231,160,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(110,231,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,231,160,0); }
}

.quote-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px dashed rgba(249,246,233,0.12);
  font-size: 14px;
}
.quote-row span { color: rgba(249,246,233,0.55); }
.quote-row b { color: var(--cream); font-weight: 600; }

.quote-result {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 20px; padding-top: 18px;
}
.quote-result span { font-size: 12.5px; color: rgba(249,246,233,0.55); text-transform: uppercase; letter-spacing: .04em; }
.quote-result strong { font-family: 'Space Grotesk', sans-serif; font-size: 30px; color: var(--gold-light); }
.quote-result strong small { font-size: 13px; color: rgba(249,246,233,0.5); font-weight: 500; }

.quote-status {
  margin-top: 16px; padding: 10px 14px;
  background: rgba(110,231,160,0.1); border: 1px solid rgba(110,231,160,0.25);
  border-radius: var(--radius-sm); color: #9be8b8; font-size: 13px; font-weight: 600;
}
.quote-disclaimer {
  display: block; margin-top: 10px;
  font-size: 10.5px; line-height: 1.5;
  color: rgba(249,246,233,0.4);
}

.float-chip {
  position: absolute;
  background: var(--cream);
  color: var(--dark);
  font-size: 13px; font-weight: 600;
  padding: 10px 16px; border-radius: 100px;
  box-shadow: var(--shadow-soft);
  animation: floatChip 5s ease-in-out infinite;
}
.chip-1 { top: -6px; right: -10px; animation-delay: .3s; }
.chip-2 { bottom: -16px; left: -20px; animation-delay: 1s; }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Partners (seguradoras) ===== */
.partners-section { padding: 56px 0; background: var(--cream); }
.partners-label {
  text-align: center; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--dark-soft); margin-bottom: 32px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.partner-logo {
  background: #fff;
  border: 1px solid rgba(62,62,62,0.07);
  border-radius: var(--radius-md);
  height: 92px;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(185,155,79,0.3);
}
.partner-logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter .3s var(--ease);
}
.partner-logo:hover img { filter: grayscale(0%) opacity(1); }

@media (max-width: 980px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-dark { background: var(--dark); color: var(--cream); }
.section-dark p { color: rgba(249,246,233,0.65); }
.section-dark h2 { color: var(--cream); }

.section-head { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { font-size: 16.5px; }
.section-dark .section-head { margin-left: auto; margin-right: auto; }

/* ===== Feature cards ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(62,62,62,0.07);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(185,155,79,0.3);
}
.feature-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(227,198,138,0.35), rgba(185,155,79,0.2));
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card {
  background: rgba(249,246,233,0.04);
  border: 1px solid rgba(249,246,233,0.1);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.step-card:hover { border-color: rgba(227,198,138,0.4); background: rgba(249,246,233,0.06); }
.step-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 18px;
}
.step-card h3 { color: var(--cream); font-size: 19px; }
.step-card p { font-size: 14.5px; margin-bottom: 0; }

/* ===== Founder ===== */
.founder-section { padding-top: 60px; padding-bottom: 60px; }
.founder-grid {
  display: grid; grid-template-columns: 0.7fr 1.3fr;
  gap: 64px; align-items: center;
}
.founder-photo-wrap { position: relative; max-width: 380px; }
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(62,62,62,0.08);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  padding: 6px;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}
.founder-chip {
  position: static;
  display: inline-block;
  width: fit-content;
  margin-top: -22px;
  margin-left: 22px;
  animation: none;
  color: var(--gold-deep);
  font-weight: 700;
}

.founder-copy h2 { font-size: clamp(26px, 3vw, 34px); }
.founder-copy p { font-size: 16px; max-width: 560px; }

.founder-points { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 32px; }
.founder-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--dark); font-weight: 500;
}
.founder-points svg { width: 21px; height: 21px; color: var(--gold-deep); flex-shrink: 0; margin-top: 1px; }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid rgba(62,62,62,0.2);
  color: var(--dark);
}
.btn-outline-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

@media (max-width: 980px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-photo-wrap { max-width: 280px; margin: 0 auto; }
}

/* ===== Cotação / Form ===== */
.cotacao-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start;
}
.cotacao-info h2 { font-size: clamp(26px, 3vw, 34px); }
.cotacao-info p { font-size: 16px; }

.info-list { margin: 28px 0; display: flex; flex-direction: column; gap: 20px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list svg {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--gold-deep);
  margin-top: 2px;
}
.info-list b { display: block; font-size: 15px; margin-bottom: 3px; }
.info-list span { font-size: 14px; color: var(--dark-soft); }

.info-badge {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(185,155,79,0.1);
  border: 1px solid rgba(185,155,79,0.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 13.5px;
  color: var(--dark);
}
.info-badge svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 1px; }

/* form card */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(62,62,62,0.06);
  position: sticky; top: 100px;
}

.form-progress { margin-bottom: 28px; }
.progress-track { height: 5px; background: rgba(62,62,62,0.08); border-radius: 10px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 33.33%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  border-radius: 10px;
  transition: width .4s var(--ease);
}
.progress-labels { display: flex; justify-content: space-between; margin-top: 10px; }
.step-label { font-size: 12px; font-weight: 600; color: rgba(62,62,62,0.35); transition: color .3s; }
.step-label.active { color: var(--gold-deep); }

.form-step { display: none; animation: fadeStep .4s var(--ease); }
.form-step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

.form-step-title { font-size: 21px; margin-bottom: 6px; }
.form-step-sub { font-size: 14px; margin-bottom: 26px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.field input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(62,62,62,0.15);
  border-radius: var(--radius-sm);
  font-size: 15px; color: var(--dark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(185,155,79,0.15);
}
.field input.invalid { border-color: #d96666; }

.field-hint {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12.5px; color: var(--dark-soft);
  margin-top: 8px; line-height: 1.5;
}
.field-hint svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-deep); }

.radio-row { display: flex; gap: 12px; margin-top: 4px; }
.radio-pill {
  flex: 1; text-align: center; padding: 13px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(62,62,62,0.15); cursor: pointer; font-size: 14px; font-weight: 600;
  transition: all .2s;
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill:has(input:checked) {
  border-color: var(--gold-deep);
  background: rgba(185,155,79,0.12);
  color: var(--dark);
}

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--dark-soft); margin: 24px 0 26px; cursor: pointer; line-height: 1.5;
}
.consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold-deep); width: 16px; height: 16px; }

.form-step-actions { display: flex; gap: 12px; }
.form-step-actions .btn-ghost { flex: 0 0 auto; }
.form-step-actions .btn-primary { flex: 1; }

.form-success { text-align: center; padding-top: 10px; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(110,231,160,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #3aa86b;
}
.success-icon svg { width: 30px; height: 30px; }
.form-success .form-step-sub { max-width: 360px; margin-left: auto; margin-right: auto; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid rgba(62,62,62,0.08);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 26px; font-size: 15.5px; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question span { color: var(--gold-deep); font-size: 22px; transition: transform .3s var(--ease); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 26px 22px; font-size: 14.5px; margin: 0; }

/* ===== CTA final ===== */
.cta-final {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  padding: 90px 0;
}
.cta-final-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-final h2 { color: var(--dark); font-size: clamp(26px, 3.2vw, 36px); }
.cta-final p { color: rgba(62,62,62,0.75); font-size: 16px; margin-bottom: 30px; }
.cta-final .btn-primary { background: var(--dark); color: var(--cream); box-shadow: 0 14px 30px -10px rgba(62,62,62,0.4); }
.cta-final .btn-primary:hover { background: #2c2c2c; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: rgba(249,246,233,0.6); padding: 64px 0 30px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 30px;
  padding-bottom: 40px; margin-bottom: 30px;
  border-bottom: 1px solid rgba(249,246,233,0.1);
}
.footer-brand .brand-text strong { font-size: 19px; }
.footer-brand .brand-divider { color: rgba(249,246,233,0.25); }
.footer-brand .brand-sub { color: rgba(249,246,233,0.45); }
.footer-brand p { font-size: 13.5px; margin-top: 8px; max-width: 280px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }

.susep-disclaimer {
  font-size: 12px; line-height: 1.7; color: rgba(249,246,233,0.45);
  max-width: 880px; margin-bottom: 18px;
}
.footer-copy { font-size: 12.5px; color: rgba(249,246,233,0.35); margin: 0; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px;
  animation: floatBtn 3s ease-in-out infinite;
  transition: transform .25s var(--ease);
}
.whatsapp-float img { width: 100%; height: 100%; object-fit: contain; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes floatBtn { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .cotacao-grid { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== Mobile sticky CTA bar ===== */
.mobile-cta-bar { display: none; }

@media (max-width: 760px) {
  html { -webkit-text-size-adjust: 100%; }
  body { padding-bottom: 78px; overflow-x: hidden; }

  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { height: 70px; }
  .brand-divider, .brand-sub { display: none; }
  .brand-text strong { font-size: 19px; }
  .site-header.nav-open .header-inner { flex-wrap: wrap; height: auto; padding-bottom: 20px; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    width: 100%; order: 3;
    padding-top: 18px; margin-top: 14px;
    border-top: 1px solid rgba(62,62,62,0.08);
  }
  .site-header.nav-open .main-nav a { padding: 12px 4px; font-size: 16px; }
  .site-header.nav-open .header-actions {
    display: flex; flex-direction: column; align-items: stretch; gap: 12px;
    width: 100%; order: 4;
    margin-top: 16px;
  }
  .site-header.nav-open .header-actions .btn { padding: 15px 20px; }

  /* prevent iOS auto-zoom on focus: inputs need >=16px */
  .field input, .faq-question { font-size: 16px; }

  .container { padding: 0 20px; }

  .hero { padding: 28px 0 56px; }
  .hero-inner { gap: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .trust-row { gap: 14px 20px; }
  .hero-visual { max-width: 360px; }
  .float-chip { font-size: 12px; padding: 9px 13px; }
  .chip-1 { top: -8px; right: -6px; }
  .chip-2 { bottom: -14px; left: -10px; }

  .partners-section { padding: 40px 0; }
  .partners-label { font-size: 12px; margin-bottom: 22px; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 44px; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 26px 22px; }

  .steps-grid { gap: 16px; }
  .step-card { padding: 28px 22px; }

  .founder-section { padding-top: 44px; padding-bottom: 44px; }

  .form-card { padding: 26px 20px; }
  .field input { padding: 14px 15px; }
  .radio-pill { padding: 15px 10px; }
  .form-step-actions { gap: 10px; }
  .consent { font-size: 13px; }

  .faq-question { padding: 18px 20px; }
  .faq-answer p { padding: 0 20px 18px; }

  .cta-final { padding: 64px 0; }
  .cta-final .btn-primary { width: 100%; }

  .footer-top { flex-direction: column; gap: 24px; }
  .site-footer { padding: 48px 0 24px; }

  .whatsapp-float { display: none; }

  .mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 250;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(249, 246, 233, 0.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-top: 1px solid rgba(62,62,62,0.1);
    box-shadow: 0 -12px 30px -18px rgba(62,62,62,0.35);
    transition: transform .3s var(--ease);
  }
  .mobile-cta-bar.is-hidden { transform: translateY(110%); }
  .mobile-cta-whats {
    flex: 0 0 auto; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-cta-whats img { width: 100%; height: 100%; object-fit: contain; }
  .mobile-cta-bar .btn-primary {
    flex: 1; padding: 14px 16px; font-size: 14.5px;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .quote-card { padding: 22px; }
  .hero-visual { max-width: 100%; }
}
