/* ============================================================
   Abertura Portas Gaia — styles.css
   Mobile-first | Design System: humano, residencial, premium
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #071B2F;
  --navy-2: #0E2A44;
  --yellow: #F6C400;
  --yellow-hover: #E5B600;
  --white: #FFFFFF;
  --off-white: #F6F8FB;
  --border: #DDE5EE;
  --text: #101827;
  --text-muted: #5F6B7A;
  --success: #1F8A4C;
  --radius-card: 16px;
  --radius-card-lg: 22px;
  --radius-btn: 12px;
  --radius-chip: 999px;
  --radius-input: 10px;
  --shadow-card: 0 12px 30px rgba(7, 27, 47, 0.06);
  --shadow-cta: 0 12px 24px rgba(246, 196, 0, 0.25);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.22s ease;
  --sticky-bar-height: 64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-bar-height);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
address { font-style: normal; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3 { line-height: 1.15; }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  padding: 9px 20px;
}
.top-strip__inner {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}
.top-strip__inner svg { color: var(--yellow); flex-shrink: 0; }
.top-strip__right { display: none; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__icon { flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.logo__city {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Nav */
.header__nav { display: none; }
.nav__list { display: flex; gap: 4px; align-items: center; }
.nav__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link--active { color: var(--navy); background: var(--off-white); }

/* Header phone CTAs */
.header__phones-cta { display: none; align-items: center; gap: 8px; }
.btn--cta-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  min-height: 44px;
  white-space: nowrap;
}
.btn--cta-header span, .btn--cta-header-2 span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.btn--cta-header small, .btn--cta-header-2 small {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn--cta-header-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  min-height: 44px;
  white-space: nowrap;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-btn);
}
.btn--cta-header-2:hover { background: var(--navy-2); }

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}
.header__hamburger:hover { background: var(--off-white); }
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav.is-open {
  display: block;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(7,27,47,0.10);
}
.header__nav.is-open .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
.header__nav.is-open .nav__link { font-size: 15px; padding: 12px 14px; border-radius: 10px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.btn span small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-cta);
}
.btn--yellow:hover {
  background: var(--yellow-hover);
  box-shadow: 0 16px 32px rgba(246, 196, 0, 0.32);
  transform: translateY(-1px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-2); transform: translateY(-1px); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--off-white); transform: translateY(-1px); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  min-height: 44px;
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn--lg { min-height: 60px; padding: 16px 28px; font-size: 16px; }
.btn--sm { min-height: 44px; padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--full-mobile { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--white); padding-top: 28px; padding-bottom: 32px; }
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-hover);
  margin-bottom: 10px;
}
.hero__h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 540px;
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.hero__bullets svg { color: var(--yellow-hover); flex-shrink: 0; margin-top: 1px; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.hero__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.hero__location svg { color: var(--yellow-hover); flex-shrink: 0; }

/* Hero image */
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-card-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.hero__badge {
  position: absolute;
  left: 16px;
  bottom: -16px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}
.hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  color: var(--navy);
  flex-shrink: 0;
}
.hero__badge-text strong { display: block; font-size: 13px; color: var(--navy); }
.hero__badge-text small { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--yellow-hover);
  flex-shrink: 0;
}
.trust-bar__item span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}
.trust-bar__note {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   SECTIONS (common)
   ============================================================ */
.section { padding: 48px 0; }
.section--off { background: var(--off-white); }
.section--white { background: var(--white); }

.section__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.01em;
}
.section__title--left { text-align: left; }
.section__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.section__sub--left { text-align: left; margin-inline: 0; }

/* ============================================================
   SITUAÇÕES
   ============================================================ */
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.problem-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.problem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(246, 196, 0, 0.12);
  border-radius: 14px;
  margin-bottom: 14px;
  color: var(--navy);
}
.problem-card__icon svg { stroke: var(--navy); }
.problem-card__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.problem-card__text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   VANTAGENS + COMO FUNCIONA
   ============================================================ */
.why-grid { display: flex; flex-direction: column; gap: 32px; }
.why-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card-lg);
  padding: 28px;
}
.why-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--navy);
  margin-top: 1px;
}

/* Como funciona — caixa navy */
.how-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-card-lg);
  padding: 28px;
  color: var(--white);
}
.how-box__title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step { display: flex; align-items: flex-start; gap: 16px; position: relative; }
.step__arrow { display: none; }
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.step__icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--yellow);
  border: 1px solid rgba(255,255,255,0.15);
}
.step__content { flex: 1; padding-bottom: 24px; }
.step:last-child .step__content { padding-bottom: 0; }
.step__title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.step__text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Stats bar inside how-box */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stats-bar__item { display: flex; flex-direction: column; gap: 2px; align-items: center; text-align: center; }
.stats-bar__value { font-size: 22px; font-weight: 800; color: var(--yellow); }
.stats-bar__label { font-size: 11px; color: rgba(255,255,255,0.65); line-height: 1.3; }
.stats-bar__note {
  grid-column: 1 / -1;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 6px;
}

/* ============================================================
   SEO BLOCK
   ============================================================ */
.seo-block { display: flex; flex-direction: column; gap: 28px; }
.seo-block__image img {
  border-radius: var(--radius-card-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.seo-block__text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.seo-block__text p strong { color: var(--navy); font-weight: 700; }

.seo-mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.seo-mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.seo-mini-feature svg { color: var(--yellow-hover); flex-shrink: 0; margin-top: 2px; }
.seo-mini-feature span { display: flex; flex-direction: column; line-height: 1.35; }
.seo-mini-feature small { font-size: 12px; font-weight: 400; color: var(--text-muted); }

/* ============================================================
   ZONAS & AVALIAÇÕES
   ============================================================ */
.zones-reviews-grid { display: flex; flex-direction: column; gap: 40px; }

.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.area-chip {
  display: inline-block;
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-chip);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.area-chip:hover { background: var(--yellow); border-color: var(--yellow); }
.area-chip--extra[hidden] { display: none; }

/* Reviews */
.reviews-grid { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
}
.review-card__stars { color: #FBBC05; font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
.review-card__text { font-size: 14.5px; line-height: 1.6; color: var(--text); margin-bottom: 14px; font-style: italic; }
.review-card__author { font-size: 13px; font-weight: 700; color: var(--navy); }

/* ============================================================
   FAQ + TAMBÉM RESOLVEMOS
   ============================================================ */
.faq-extra-grid { display: flex; flex-direction: column; gap: 40px; }

.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--yellow); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  gap: 12px;
  min-height: 56px;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--off-white); color: var(--navy); }
.faq-question[aria-expanded="true"] { color: var(--navy); background: rgba(246, 196, 0, 0.06); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(45deg); color: var(--yellow-hover); }
.faq-answer { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding var(--transition); }
.faq-answer:not([hidden]) { max-height: 400px; padding: 0 18px 18px; }
.faq-answer[hidden] { display: block !important; }
.faq-answer p { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }

/* Também resolvemos */
.extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.extra-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  text-align: center;
}
.extra-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 0 auto 10px;
  color: var(--yellow-hover);
}
.extra-card__title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.extra-card__text { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 40px 0;
}
.cta-final__inner { display: flex; flex-direction: column; gap: 28px; }
.cta-final__title { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-final__sub { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.6; }
.cta-final__buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.cta-final__bullets { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.cta-final__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.cta-final__bullets svg { color: var(--yellow); flex-shrink: 0; }
.cta-final__image img { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); }
.footer__inner { display: flex; flex-direction: column; gap: 36px; padding-top: 48px; padding-bottom: 36px; }
.footer__brand-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 14px 0 18px; max-width: 280px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}
.footer__social:hover { background: var(--yellow); color: var(--navy); }

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a, .footer__links span { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__nap-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer__nap-area { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.footer__phones { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.footer__phones a { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); transition: color var(--transition); }
.footer__phones a:hover { color: var(--yellow); }
.footer__hours { font-size: 12px; color: rgba(255,255,255,0.5); }

.footer__map {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.footer__map svg { display: block; width: 100%; height: auto; }

.footer__bottom { background: #04101D; padding: 16px 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__bottom-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card-lg);
  padding: 28px;
}
.form-card__title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card__sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-required { color: #e53935; }
.form-input-wrap { position: relative; }
.form-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.form-icon--top { top: 16px; transform: none; }
.form-input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(246, 196, 0, 0.15); }
.form-input::placeholder { color: #aab3bc; }
.form-textarea { height: auto; padding-top: 14px; resize: vertical; min-height: 90px; }
.form-security {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form-security svg { flex-shrink: 0; margin-top: 2px; color: var(--yellow-hover); }
.form-security__link { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* Honeypot */
.contact-form { position: relative; }
.hp-field, .form-honeypot {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Form feedback */
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: var(--radius-input);
  margin-top: 10px;
}
.form-feedback--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-feedback--error { background: #fdecea; color: #b71c1c; border: 1px solid #ef9a9a; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  height: var(--sticky-bar-height);
  box-shadow: 0 -4px 20px rgba(7, 27, 47, 0.18);
}
.sticky-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity var(--transition);
  padding: 8px 4px;
}
.sticky-bar__btn span { display: flex; flex-direction: column; align-items: center; gap: 0; }
.sticky-bar__btn small { font-size: 13px; font-weight: 800; letter-spacing: 0.02em; text-transform: none; }
.sticky-bar__btn:active { opacity: 0.82; }
.sticky-bar__btn--yellow { background: var(--yellow); color: var(--navy); }
.sticky-bar__btn--navy { background: var(--navy); color: var(--white); border-left: 1px solid rgba(255,255,255,0.1); }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media print {
  .sticky-bar, .header__hamburger { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   DESKTOP BREAKPOINTS
   ============================================================ */
@media (min-width: 768px) {
  .container { padding-inline: 24px; }
  .section { padding: 64px 0; }

  .hero__h1 { font-size: 48px; }
  .hero__sub { font-size: 17px; }
  .hero__ctas { flex-direction: row; }
  .btn--full-mobile { width: auto; }

  .problems-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .trust-bar__inner { grid-template-columns: repeat(5, 1fr); }
  .trust-bar__note { display: none; }

  .section__title { font-size: 30px; }
  .seo-block__title { font-size: 36px; }

  .seo-mini-features { grid-template-columns: repeat(2, 1fr); }
  .extra-grid { grid-template-columns: repeat(4, 1fr); }

  .cta-final__buttons { flex-direction: row; }
  .form-row { flex-direction: row; gap: 14px; }
  .form-row .form-group { flex: 1; }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }

  .container { padding-inline: 32px; }
  .section { padding: 80px 0; }
  .section__title { font-size: 34px; }

  /* Top strip: split left/right */
  .top-strip__inner { justify-content: space-between; text-align: left; }
  .top-strip__right {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .top-strip__right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 700;
    transition: color var(--transition);
  }
  .top-strip__right a:hover { color: var(--yellow); }
  .top-strip__right svg { color: var(--yellow); }

  /* Header */
  .header__nav { display: flex; }
  .header__hamburger { display: none; }
  .header__phones-cta { display: flex; }
  .header__inner { height: 80px; }

  /* Hero: 2 columns */
  .hero { padding-top: 56px; padding-bottom: 64px; }
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .hero__content { flex: 1; }
  .hero__media { flex: 1; }
  .hero__h1 { font-size: 58px; }

  /* Situações: 6 cols */
  .problems-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .problem-card { padding: 24px 16px; }

  /* Vantagens + Como funciona: 2 cols */
  .why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 32px;
    align-items: stretch;
  }
  .why-card { display: flex; flex-direction: column; justify-content: center; }
  .how-box { display: flex; flex-direction: column; justify-content: center; }
  .steps { flex-direction: row; gap: 8px; }
  .step { flex: 1; flex-direction: column; align-items: center; text-align: center; }
  .step__arrow { display: none; }
  .step__num { width: 48px; height: 48px; font-size: 20px; }
  .step__icon { display: flex; }
  .step__content { padding-bottom: 0; }
  .stats-bar { grid-template-columns: repeat(4, 1fr); }

  /* SEO block: image + text side by side */
  .seo-block { flex-direction: row; align-items: center; gap: 64px; }
  .seo-block__image { flex: 0 0 460px; }
  .seo-block__text { flex: 1; }

  /* Zonas + Avaliações: 2 cols */
  .zones-reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .reviews-grid { grid-template-columns: repeat(1, 1fr); }

  /* FAQ + Também resolvemos: 2 cols */
  .faq-extra-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA final: row layout */
  .cta-final__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .cta-final__text { flex: 1.2; }
  .cta-final__image { flex: 1; }
  .cta-final__title { font-size: 34px; }

  /* Footer: columns */
  .footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
  }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1280px) {
  .hero__h1 { font-size: 64px; }
  .section__title { font-size: 36px; }
  .seo-block__title { font-size: 40px; }
  .cta-final__title { font-size: 38px; }
}

@media (min-width: 1024px) {
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
