/* ==========================================================================
   Facile — Mercado Autônomo 24H — One Page
   ========================================================================== */

@font-face {
  font-family: "Fixture";
  src: url("../fonts/fixture/Fixture-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fixture";
  src: url("../fonts/fixture/Fixture-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/helvetica/HelveticaNowDisplay-Regular.woff2") format("woff2"),
       url("../fonts/helvetica/HelveticaNowDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/helvetica/HelveticaNowDisplay-Medium.woff2") format("woff2"),
       url("../fonts/helvetica/HelveticaNowDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/helvetica/HelveticaNowDisplay-Bold.woff2") format("woff2"),
       url("../fonts/helvetica/HelveticaNowDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/helvetica/HelveticaNowDisplay-Black.woff2") format("woff2"),
       url("../fonts/helvetica/HelveticaNowDisplay-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------------------------------------------------------------------
   Tokens
   --------------------------------------------------------------------- */
:root {
  --bege: #fff4db;
  --bege-claro: #fffaf0;
  --laranja: #e5620d;
  --laranja-escuro: #c25009;
  --preto: #282828;
  --azul: #232c5a;
  --azul-claro: #3a4680;
  --cinza-texto: #5a5a5a;

  --f-display: "Fixture", "Archivo Black", "Anton", sans-serif;
  --f-body: "Helvetica Now Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;

  --container: 1180px;
  --radius-card: 24px;
  --shadow-card: 0 12px 32px rgba(40, 40, 40, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--preto);
  background: var(--bege);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------------------
   Typography helpers
   --------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--laranja);
  margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--bege); opacity: .85; }
.eyebrow.on-orange { color: var(--preto); }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  padding-bottom: 18px;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 88px;
  background: var(--laranja);
  border-radius: 3px;
}
.section-title.on-orange::after,
.section-title.on-azul::after { background: var(--bege); }
.section-title.center { text-align: center; }
.section-title.center::after { left: 50%; transform: translateX(-50%); }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--cinza-texto);
  max-width: 640px;
}
.on-dark .lede, .lede.on-dark { color: rgba(255, 244, 219, 0.82); }

.serif-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 15px;
  padding: 17px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-bege-on-laranja { background: var(--bege); color: var(--laranja-escuro); }
.btn-bege-on-laranja:hover { background: #fff; }

.btn-outline-on-laranja { background: transparent; color: var(--bege); border-color: var(--bege); }
.btn-outline-on-laranja:hover { background: rgba(255, 244, 219, 0.14); }

.btn-laranja { background: var(--laranja); color: var(--bege); }
.btn-laranja:hover { background: var(--laranja-escuro); }

.btn-outline-laranja { background: transparent; color: var(--laranja); border-color: var(--laranja); }
.btn-outline-laranja:hover { background: rgba(229, 98, 13, .08); }

.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   Icon badge
   --------------------------------------------------------------------- */
.icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}
.icon-badge svg { width: 30px; height: 30px; stroke: var(--bege); fill: none; }
.icon-badge.small { width: 46px; height: 46px; margin-bottom: 0; }
.icon-badge.small svg { width: 22px; height: 22px; }
.icon-badge.on-bege-claro { background: var(--laranja); }
.icon-badge.outline-bege { background: var(--bege); }
.icon-badge.outline-bege svg { stroke: var(--laranja); }
.icon-badge.numeral {
  font-family: var(--f-display);
  font-weight: 900;
  color: var(--bege);
  font-size: 22px;
}

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 244, 219, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 40, 40, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand span {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--preto);
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { opacity: .8; transition: opacity .15s ease; }
.nav-links a:hover { opacity: 1; color: var(--laranja); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 12px 22px; font-size: 13px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--preto); border-radius: 2px; }

/* ---------------------------------------------------------------------
   Seal / selo circular
   --------------------------------------------------------------------- */
.seal {
  width: 92px;
  height: 92px;
  position: relative;
  flex-shrink: 0;
}
.seal svg { width: 100%; height: 100%; }
.seal .seal-text { font-family: var(--f-body); font-weight: 700; letter-spacing: 0.25em; }
.seal .seal-cart { fill: var(--bege); }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero {
  background: var(--laranja);
  color: var(--bege);
  padding: 56px 0 64px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-top-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-top-mark img { width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.hero-top-mark .wordmark { font-family: var(--f-display); font-weight: 900; font-size: 22px; letter-spacing: -0.01em; }

.hero h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin-bottom: 22px;
}
.hero .lede {
  color: rgba(255, 244, 219, 0.88);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 38px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
}
.hero-bullets .bullet-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 244, 219, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-bullets .bullet-icon svg { width: 17px; height: 17px; stroke: var(--bege); fill: none; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.hero-microcopy { font-size: 13px; color: rgba(255, 244, 219, 0.72); }

.hero-media { position: relative; }
.hero-media-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid var(--bege);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  transform: rotate(1.2deg);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-media-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--bege);
  color: var(--preto);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-media-badge strong { font-family: var(--f-display); font-weight: 900; display: block; font-size: 22px; color: var(--laranja); }
.hero-media-badge span { font-size: 12.5px; color: var(--cinza-texto); }

/* ---------------------------------------------------------------------
   NÚMEROS
   --------------------------------------------------------------------- */
.numeros {
  background: var(--azul);
  color: var(--bege);
  padding: 84px 0;
}
.numeros .section-title { color: var(--bege); }
.numeros-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 44px;
}
.numeros-copy .lede { max-width: 520px; margin-bottom: 16px; }
.numeros-copy .lede:last-child { margin-bottom: 0; }

.numeros-card {
  position: relative;
  background: var(--bege-claro);
  color: var(--preto);
  border-radius: var(--radius-card);
  padding: 40px 36px 34px;
  box-shadow: 0 20px 44px rgba(0,0,0,.22);
}
.numeros-card-seal {
  position: absolute;
  top: -26px;
  right: -18px;
  width: 78px;
  height: 78px;
}
.numeros-card .eyebrow { margin-bottom: 12px; }
.numeros-card h3 { font-family: var(--f-body); font-weight: 700; text-transform: none; font-size: 21px; margin-bottom: 12px; line-height: 1.25; }
.numeros-card p:not(.eyebrow) { margin: 0; color: var(--cinza-texto); font-size: 15px; line-height: 1.6; }

.numeros-footline {
  border-top: 1px solid rgba(255, 244, 219, 0.18);
  padding-top: 28px;
  font-size: 15px;
  color: rgba(255, 244, 219, 0.78);
  max-width: 720px;
}
.pending-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 244, 219, 0.14);
  color: var(--bege);
  padding: 3px 9px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------------------------------------------------------------------
   COMO FUNCIONA
   --------------------------------------------------------------------- */
.como-funciona { background: var(--bege); padding: 96px 0; }
.como-funciona .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.como-funciona-media { position: relative; display: flex; justify-content: center; }
.como-funciona-media img { max-width: 420px; width: 100%; }
.steps { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.step-card {
  background: var(--bege-claro);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.step-card .icon-badge { margin-bottom: 0; }
.step-card h3 { font-family: var(--f-body); font-weight: 700; text-transform: none; font-size: 18px; margin-bottom: 8px; }
.step-card p { margin: 0; color: var(--cinza-texto); font-size: 15px; line-height: 1.55; }
.section-footnote {
  margin-top: 36px;
  font-size: 14px;
  color: var(--cinza-texto);
  border-left: 3px solid var(--laranja);
  padding-left: 16px;
}

/* ---------------------------------------------------------------------
   BENEFÍCIOS
   --------------------------------------------------------------------- */
.beneficios { background: var(--bege); padding: 0 0 100px; }
.beneficios .section-head { max-width: 620px; }
.benef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.benef-card {
  background: var(--bege-claro);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.benef-card h3 { font-family: var(--f-body); font-weight: 700; text-transform: none; font-size: 18px; margin-bottom: 10px; }
.benef-card p { margin: 0; color: var(--cinza-texto); font-size: 15px; line-height: 1.55; }

/* ---------------------------------------------------------------------
   APP / EXPERIÊNCIA DO MORADOR
   --------------------------------------------------------------------- */
.app-section { background: var(--laranja); color: var(--bege); padding: 96px 0; }
.app-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-media img { width: 100%; max-width: 520px; }
.app-copy .lede.on-dark { margin-bottom: 34px; }
.app-blocks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }
.app-block { display: flex; gap: 16px; align-items: flex-start; }
.app-block .icon-badge.small { background: rgba(255,244,219,.16); }
.app-block .icon-badge.small svg { stroke: var(--bege); }
.app-block h3 { font-family: var(--f-body); font-weight: 700; text-transform: none; font-size: 16px; margin: 0 0 6px; }
.app-block p { margin: 0; font-size: 14.5px; color: rgba(255,244,219,.82); line-height: 1.5; }

.app-sidebox {
  background: rgba(255, 244, 219, 0.12);
  border: 1px solid rgba(255, 244, 219, 0.25);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.app-sidebox strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; color: var(--bege); }
.app-sidebox p { margin: 0; font-size: 14.5px; color: rgba(255,244,219,.85); line-height: 1.55; }

.app-store-links { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.app-store-links a { border-bottom: 1px solid rgba(255,244,219,.5); padding-bottom: 2px; font-weight: 700; }
.app-store-links .sep { opacity: .6; }

/* ---------------------------------------------------------------------
   OPERAÇÃO COMPLETA
   --------------------------------------------------------------------- */
.operacao { background: var(--bege); padding: 96px 0; }
.operacao .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.operacao-media img { width: 100%; max-width: 460px; margin: 0 auto; }
.operacao-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.operacao-cards .benef-card:last-child { grid-column: span 2; }
.operacao-cards .benef-card { display: flex; gap: 16px; align-items: flex-start; padding: 26px; }
.operacao-cards .icon-badge.small { margin-top: 2px; }
.operacao-cards .card-copy h3 { margin-bottom: 6px; }

/* ---------------------------------------------------------------------
   GARANTIAS
   --------------------------------------------------------------------- */
.garantias { background: var(--laranja); color: var(--bege); padding: 96px 0; }
.garantias .section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; }
.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}
.garantia-card {
  background: var(--bege);
  color: var(--preto);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
}
.garantia-card .icon-badge { background: var(--laranja); }
.garantia-card h3 { font-family: var(--f-body); font-weight: 700; text-transform: none; font-size: 18px; margin-bottom: 10px; }
.garantia-card p { margin: 0; color: var(--cinza-texto); font-size: 15px; line-height: 1.55; }
.garantia-card .inline-pending {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--laranja-escuro);
  background: rgba(229,98,13,.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.garantias-closing {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  max-width: 760px;
  margin: 0 auto;
  color: var(--bege);
}

/* ---------------------------------------------------------------------
   DEPOIMENTOS
   --------------------------------------------------------------------- */
.depoimentos { background: var(--bege); padding: 96px 0; }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}
.depo-card {
  background: var(--bege-claro);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.depo-card blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--preto);
}
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--laranja);
  color: var(--bege);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 14.5px; }
.depo-author span { font-size: 13px; color: var(--cinza-texto); }
.depo-pending {
  font-size: 12px;
  color: var(--laranja-escuro);
  font-weight: 700;
  margin-top: 14px;
  display: inline-block;
}

.gallery-caption { text-align: center; margin-bottom: 22px; color: var(--cinza-texto); font-style: italic; font-family: var(--f-serif); font-size: 18px; }

.gallery-carousel {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 48px, black calc(100% - 48px), transparent);
  mask-image: linear-gradient(to right, transparent, black 48px, black calc(100% - 48px), transparent);
}
.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: gallery-scroll 42s linear infinite;
}
.gallery-carousel:hover .gallery-track { animation-play-state: paused; }
.gallery-track img {
  width: 260px;
  height: 260px;
  flex: none;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--laranja);
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
}

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq { background: var(--bege); padding: 0 0 100px; }
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid rgba(40,40,40,.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--preto);
}
.faq-plus {
  width: 28px; height: 28px;
  flex-shrink: 0;
  position: relative;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--laranja);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.faq-plus::before { top: 50%; left: 0; width: 100%; height: 3px; margin-top: -1.5px; }
.faq-plus::after { left: 50%; top: 0; width: 3px; height: 100%; margin-left: -1.5px; }
.faq-item.open .faq-plus::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  margin: 0 0 22px;
  padding-right: 40px;
  color: var(--cinza-texto);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 320px; }

/* ---------------------------------------------------------------------
   FRANQUIA
   --------------------------------------------------------------------- */
.franquia { background: var(--bege); padding-bottom: 12px; }
.franquia-box {
  border: 2px solid var(--laranja);
  background: var(--bege-claro);
  border-radius: var(--radius-card);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.franquia-box h3 { font-size: 24px; margin-bottom: 10px; }
.franquia-box p { margin: 0; color: var(--cinza-texto); font-size: 15px; max-width: 620px; line-height: 1.6; }
.franquia-box .btn { flex-shrink: 0; }

/* ---------------------------------------------------------------------
   CONTATO
   --------------------------------------------------------------------- */
.contato { background: var(--laranja); color: var(--bege); padding: 100px 0; }
.contato .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.contato-intro .seal { margin-bottom: 26px; }
.contato h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
.contato .lede { color: rgba(255,244,219,.88); margin-bottom: 34px; }
.contato-phone-cta { margin-bottom: 10px; }

.contato-form {
  background: var(--bege);
  color: var(--preto);
  border-radius: var(--radius-card);
  padding: 38px;
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 6px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field.full { grid-column: span 2; }
.form-field label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--cinza-texto); }
.form-field input, .form-field select {
  border: 1.5px solid rgba(40,40,40,.15);
  background: #fff;
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--preto);
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--laranja);
}
.form-microcopy { font-size: 12.5px; color: var(--cinza-texto); text-align: center; margin-top: 14px; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer { background: var(--preto); color: var(--bege); padding: 56px 0 28px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,244,219,.14);
  margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer-brand span { font-family: var(--f-display); font-weight: 900; font-size: 19px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; }
.footer-nav a { opacity: .78; }
.footer-nav a:hover { opacity: 1; }
.footer-social { display: flex; gap: 18px; font-size: 14px; }
.footer-social a { opacity: .78; }
.footer-social a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,244,219,.55);
}
.footer-bottom a { text-decoration: underline; opacity: .9; }

/* ---------------------------------------------------------------------
   Whatsapp floating button
   --------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--laranja);
  color: var(--bege);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(229,98,13,.4);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; fill: var(--bege); }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .numeros-grid { grid-template-columns: 1fr; gap: 40px; }
  .numeros-card { max-width: 460px; }
  .benef-grid { grid-template-columns: repeat(2, 1fr); }
  .garantias-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bege);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    border-bottom: 1px solid rgba(40,40,40,.08);
    box-shadow: 0 12px 20px rgba(0,0,0,.06);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(40,40,40,.06); }
  .nav-toggle { display: flex; }
  .hero .container,
  .como-funciona .container,
  .app-section .container,
  .operacao .container,
  .contato .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto 12px; }
  .como-funciona-media { order: -1; margin-bottom: 12px; }
  .benef-grid { grid-template-columns: 1fr; }
  .operacao-cards { grid-template-columns: 1fr; }
  .operacao-cards .benef-card:last-child { grid-column: span 1; }
  .depo-grid { grid-template-columns: 1fr; }
  .gallery-track img { width: 200px; height: 200px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .franquia-box { flex-direction: column; align-items: flex-start; }
  .header-cta .btn span.btn-long { display: none; }
}

@media (max-width: 620px) {
  .numeros-card { max-width: none; padding: 32px 26px 28px; }
  .numeros-card-seal { top: -20px; right: -10px; width: 64px; height: 64px; }
  .hero-media-badge { position: static; margin-top: 18px; max-width: none; }
  .hero-media-frame { transform: none; }
  .gallery-track img { width: 160px; height: 160px; }
  .gallery-carousel { mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent); }
  section { padding-left: 0; }
}
