/* ============================================================
   FDT Soluções Financeiras — Folha de estilo
   Paleta: verde-floresta profundo + esmeralda + lima + ouro
   Tipografia: Bricolage Grotesque (display) + Plus Jakarta Sans
   ============================================================ */

:root {
  /* Cores */
  --forest:      #052e22;
  --forest-2:    #0a4733;
  --emerald:     #0f8c5c;
  --emerald-2:   #11a368;
  --lime:        #2ee27f;
  --lime-soft:   #d4f7e4;
  --gold:        #e8b35a;
  --gold-soft:   #f6e6c4;
  --cream:       #f6f4ec;
  --cream-2:     #efece1;
  --paper:       #ffffff;
  --ink:         #08201a;
  --ink-soft:    #3a5249;
  --whatsapp:    #25d366;

  /* Tipografia */
  --display: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Métricas */
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
  --shadow-sm: 0 4px 18px rgba(5, 46, 34, .08);
  --shadow-md: 0 18px 50px rgba(5, 46, 34, .14);
  --shadow-lg: 0 30px 80px rgba(5, 46, 34, .22);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Tipografia base ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); border-radius: 2px; }
.eyebrow.light { color: var(--lime); }
.eyebrow.light::before { background: var(--gold); }

.section { padding: 110px 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 18px 0 16px; }
.section__head p { font-size: 1.08rem; color: var(--ink-soft); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }

.text-grad {
  background: linear-gradient(100deg, var(--emerald) 0%, var(--lime) 60%, var(--gold) 130%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: .98rem;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--wa { background: var(--whatsapp); color: #04210f; box-shadow: 0 12px 30px rgba(37, 211, 102, .35); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37, 211, 102, .45); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--forest-2); }
.btn--gold { background: linear-gradient(120deg, var(--gold), #f3c97a); color: #3a2a06; box-shadow: 0 12px 30px rgba(232, 179, 90, .35); }
.btn--gold:hover { transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(8,32,26,.18); }
.btn--ghost:hover { border-color: var(--emerald); color: var(--emerald); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: var(--cream); border: 1.5px solid rgba(255,255,255,.22); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--forest); color: var(--cream);
  font-size: .82rem; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; }
.topbar__marquee { display: flex; align-items: center; gap: 28px; overflow: hidden; }
.topbar__marquee span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; color: #cfe9dd; }
.topbar__marquee svg { width: 15px; height: 15px; color: var(--lime); flex-shrink: 0; }
.topbar__social { display: flex; align-items: center; gap: 14px; }
.topbar__social a { display: inline-flex; opacity: .85; transition: opacity .2s, transform .2s; }
.topbar__social a:hover { opacity: 1; transform: translateY(-2px); }
.topbar__social svg { width: 17px; height: 17px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 244, 236, .82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 32, 26, .07);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(140deg, var(--emerald), var(--forest-2));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), var(--shadow-sm);
}
.brand__mark svg { width: 26px; height: 26px; color: var(--lime); }
.brand__txt { line-height: 1; }
.brand__txt strong { font-family: var(--display); font-size: 1.35rem; letter-spacing: -.03em; color: var(--ink); display: block; }
.brand__txt small { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--emerald); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: .94rem; font-weight: 600; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--emerald); background: rgba(15, 140, 92, .08); }
.header__cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: 12px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -5%, rgba(46, 226, 127, .16), transparent 60%),
    radial-gradient(800px 500px at 5% 110%, rgba(232, 179, 90, .12), transparent 55%),
    var(--cream);
  padding: 70px 0 100px;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid rgba(8,32,26,.08);
  padding: 8px 16px 8px 10px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero__chip i {
  width: 22px; height: 22px; border-radius: 50%; background: var(--lime-soft);
  display: grid; place-items: center;
}
.hero__chip i svg { width: 13px; height: 13px; color: var(--emerald); }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); margin-bottom: 22px; }
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .32em;
  background: linear-gradient(90deg, var(--lime), var(--gold)); opacity: .42; z-index: -1; border-radius: 4px;
}
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--ink);
  background: var(--paper); border: 1px solid rgba(8,32,26,.08);
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero__tag svg { width: 17px; height: 17px; color: var(--emerald); flex-shrink: 0; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  background: var(--paper); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(8,32,26,.06); position: relative; z-index: 2;
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hero__card-top span { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--emerald); }
.hero__card-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--lime-soft); color: var(--forest-2); font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.hero__card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.hero__card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 20px; }
.hero__highlight {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: linear-gradient(120deg, var(--forest), var(--forest-2)); color: var(--cream);
}
.hero__highlight i { width: 42px; height: 42px; border-radius: 12px; background: rgba(46,226,127,.16); display: grid; place-items: center; flex-shrink: 0; }
.hero__highlight i svg { width: 22px; height: 22px; color: var(--lime); }
.hero__highlight b { font-family: var(--display); font-size: 1.2rem; color: var(--lime); display: block; line-height: 1.1; }
.hero__highlight small { font-size: .82rem; color: #bfe0d3; }
.hero__steps { display: grid; gap: 12px; }
.hero__step { display: flex; align-items: center; gap: 13px; font-size: .9rem; font-weight: 600; }
.hero__step i { width: 30px; height: 30px; border-radius: 9px; background: var(--cream); display: grid; place-items: center; flex-shrink: 0; }
.hero__step i svg { width: 16px; height: 16px; color: var(--emerald); }

.hero__float {
  position: absolute; background: var(--paper); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; z-index: 3;
  border: 1px solid rgba(8,32,26,.06);
}
.hero__float svg { width: 30px; height: 30px; }
.hero__float strong { font-size: .92rem; display: block; }
.hero__float span { font-size: .76rem; color: var(--ink-soft); }
.hero__float--1 { top: -22px; left: -34px; animation: floaty 5s var(--ease) infinite; }
.hero__float--2 { bottom: 36px; right: -38px; animation: floaty 6s var(--ease) infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Faixa de credenciais ---------- */
.creds { background: var(--forest); color: var(--cream); padding: 30px 0; }
.creds__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cred { display: flex; align-items: center; gap: 14px; }
.cred i { width: 46px; height: 46px; border-radius: 12px; background: rgba(46,226,127,.12); display: grid; place-items: center; flex-shrink: 0; }
.cred i svg { width: 23px; height: 23px; color: var(--lime); }
.cred strong { display: block; font-family: var(--display); font-size: 1rem; }
.cred span { font-size: .8rem; color: #aacabb; }

/* ---------- Serviços ---------- */
.services { background: var(--cream); }
.services__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
.services__head .section__head { margin-bottom: 0; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(8,32,26,.06); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  cursor: default;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(420px 200px at 100% 0%, rgba(46,226,127,.1), transparent 70%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(15,140,92,.25); }
.card:hover::after { opacity: 1; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(140deg, var(--lime-soft), #eafaf1);
  transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: scale(1.06) rotate(-4deg); }
.card__icon svg { width: 28px; height: 28px; color: var(--emerald); }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }
.card__link { font-size: .85rem; font-weight: 700; color: var(--emerald); display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 1; }
.card__link svg { width: 15px; height: 15px; transition: transform .3s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card--feature { grid-column: span 2; background: linear-gradient(135deg, var(--forest), var(--forest-2)); color: var(--cream); border: 0; }
.card--feature h3 { color: var(--cream); }
.card--feature p { color: #bfe0d3; }
.card--feature .card__icon { background: rgba(46,226,127,.14); }
.card--feature .card__icon svg { color: var(--lime); }
.card--feature .card__link { color: var(--lime); }

/* ---------- Maquininha TON ---------- */
.ton { background: var(--paper); overflow: hidden; }
.ton__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ton__media { position: relative; }
.ton__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.ton__partner {
  position: absolute; top: 24px; left: -22px; background: var(--paper);
  padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow-md);
  font-weight: 800; font-size: .95rem; display: flex; align-items: center; gap: 8px;
}
.ton__partner b { color: var(--whatsapp); }
.ton__badge {
  position: absolute; bottom: 24px; right: -20px; background: var(--ink); color: var(--cream);
  padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow-md);
}
.ton__badge b { font-family: var(--display); font-size: 1.5rem; color: var(--lime); display: block; }
.ton__badge span { font-size: .78rem; color: #bfe0d3; }
.ton__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 34px; }
.ton__benefit { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .94rem; }
.ton__benefit i { width: 26px; height: 26px; border-radius: 8px; background: var(--lime-soft); display: grid; place-items: center; flex-shrink: 0; }
.ton__benefit i svg { width: 15px; height: 15px; color: var(--emerald); }

/* ---------- Seguro de veículos ---------- */
.seg { background: linear-gradient(160deg, var(--forest), #04241b); color: var(--cream); }
.seg__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.seg__head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 16px 0; }
.seg__head p { color: #bfe0d3; font-size: 1.05rem; margin-bottom: 28px; }
.seg__list { display: grid; gap: 14px; margin-bottom: 32px; }
.seg__item { display: flex; align-items: flex-start; gap: 12px; }
.seg__item i { width: 24px; height: 24px; border-radius: 7px; background: rgba(46,226,127,.16); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.seg__item i svg { width: 14px; height: 14px; color: var(--lime); }
.seg__item span { color: #d6ece2; font-size: .96rem; }
.seg__insurers { display: flex; flex-wrap: wrap; gap: 10px; }
.seg__insurers .ip {
  background: var(--paper); color: var(--forest-2); font-weight: 800; font-size: .8rem;
  padding: 9px 15px; border-radius: 10px; box-shadow: var(--shadow-sm);
}
.seg__panel {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 34px; backdrop-filter: blur(6px);
}
.seg__panel h3 { font-size: 1.4rem; margin-bottom: 8px; }
.seg__panel > p { color: #bfe0d3; margin-bottom: 24px; font-size: .95rem; }
.seg__insurers-title { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--lime); font-weight: 700; margin-bottom: 14px; }

/* ---------- Como funciona ---------- */
.steps { background: var(--cream); }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--paper); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid rgba(8,32,26,.06); position: relative;
}
.step__num {
  font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--lime);
  -webkit-text-stroke: 1.5px var(--emerald); line-height: 1; margin-bottom: 18px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--ink-soft); }
.step__line { display: none; }

/* ---------- Sobre ---------- */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__media-frame {
  position: absolute; inset: -16px -16px auto auto; width: 60%; height: 70%;
  border: 2px solid var(--lime); border-radius: var(--radius); z-index: -1;
}
.about__quote {
  font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.25;
  margin: 18px 0 26px; letter-spacing: -.02em;
}
.about__sig { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.about__sig i { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(140deg, var(--emerald), var(--forest-2)); display: grid; place-items: center; color: var(--lime); font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.about__sig strong { display: block; font-size: 1rem; }
.about__sig span { font-size: .84rem; color: var(--ink-soft); }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__point { display: flex; gap: 12px; align-items: flex-start; }
.about__point i { width: 28px; height: 28px; border-radius: 8px; background: var(--lime-soft); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.about__point i svg { width: 15px; height: 15px; color: var(--emerald); }
.about__point p { font-size: .9rem; color: var(--ink-soft); }
.about__point strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid rgba(8,32,26,.07); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: rgba(15,140,92,.25); }
.faq__item summary { cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { width: 26px; height: 26px; border-radius: 50%; background: var(--lime-soft); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .3s; }
.faq__item summary i svg { width: 14px; height: 14px; color: var(--emerald); }
.faq__item[open] summary i { transform: rotate(45deg); background: var(--emerald); }
.faq__item[open] summary i svg { color: #fff; }
.faq__item p { padding: 0 24px 22px; color: var(--ink-soft); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--emerald), var(--forest-2));
  color: var(--cream); text-align: center; padding: 84px 0;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(8px); opacity: .25;
}
.cta::before { width: 260px; height: 260px; background: var(--lime); top: -120px; left: -60px; }
.cta::after { width: 320px; height: 320px; background: var(--gold); bottom: -160px; right: -80px; opacity: .18; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; position: relative; }
.cta p { font-size: 1.12rem; color: #d6ece2; max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Contato ---------- */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact__info h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 16px 0; }
.contact__info > p { color: var(--ink-soft); margin-bottom: 32px; font-size: 1.05rem; }
.contact__methods { display: grid; gap: 14px; }
.contact__method {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: var(--cream); border-radius: var(--radius-sm); border: 1px solid rgba(8,32,26,.06);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.contact__method:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact__method i { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(140deg, var(--lime-soft), #eafaf1); display: grid; place-items: center; flex-shrink: 0; }
.contact__method i svg { width: 23px; height: 23px; color: var(--emerald); }
.contact__method span { font-size: .8rem; color: var(--ink-soft); display: block; }
.contact__method strong { font-size: 1.05rem; }

.form {
  background: linear-gradient(160deg, var(--forest), var(--forest-2)); color: var(--cream);
  border-radius: var(--radius); padding: 38px;
}
.form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form > p { color: #bfe0d3; font-size: .92rem; margin-bottom: 26px; }
.form__field { margin-bottom: 16px; }
.form__field label { font-size: .82rem; font-weight: 600; color: #d6ece2; display: block; margin-bottom: 7px; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); color: var(--cream); font-family: var(--body); font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: #8fb3a4; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { outline: none; border-color: var(--lime); background: rgba(255,255,255,.1); }
.form__field select option { color: #08201a; }
.form .btn { width: 100%; margin-top: 6px; }
.form__note { font-size: .76rem; color: #8fb3a4; text-align: center; margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #aacabb; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .brand__txt strong { color: var(--cream); }
.footer__about { max-width: 320px; }
.footer__about p { margin: 18px 0; font-size: .92rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--emerald); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; color: var(--cream); }
.footer__col h4 { color: var(--cream); font-size: 1rem; margin-bottom: 18px; font-family: var(--display); }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { font-size: .9rem; transition: color .2s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: .82rem; }
.footer__legal { max-width: 720px; font-size: .76rem; color: #6f8b7e; line-height: 1.7; margin-top: 18px; }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp); animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============================================================
   ADMIN — edição de conteúdo
   ============================================================ */
[data-edit] { transition: outline-color .2s, background .2s; }
body.admin-mode [data-edit] {
  outline: 2px dashed rgba(15,140,92,.5); outline-offset: 4px; border-radius: 4px; cursor: text;
}
body.admin-mode [data-edit]:hover { outline-color: var(--emerald); background: rgba(46,226,127,.08); }
body.admin-mode [data-edit]:focus { outline: 2px solid var(--emerald); background: rgba(46,226,127,.1); }

body.admin-mode [data-img] { position: relative; }
body.admin-mode [data-img]::before {
  content: "📷 Trocar imagem"; position: absolute; inset: 0; z-index: 5;
  background: rgba(5,46,34,.7); color: #fff; display: grid; place-items: center;
  font-family: var(--body); font-weight: 700; font-size: .9rem; border-radius: inherit;
  opacity: 0; transition: opacity .25s; cursor: pointer; pointer-events: none;
}
body.admin-mode [data-img]:hover::before { opacity: 1; }

.admin-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; transform: translateY(120%);
  background: var(--ink); color: var(--cream); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,.3); transition: transform .4s var(--ease);
}
.admin-bar.show { transform: translateY(0); }
.admin-bar__status { font-size: .82rem; color: #aacabb; margin-right: auto; display: flex; align-items: center; gap: 8px; }
.admin-bar__status b { color: var(--lime); }
.admin-bar__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(46,226,127,.2); }
.admin-bar button {
  font-family: var(--body); font-weight: 700; font-size: .84rem; padding: 9px 16px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  color: var(--cream); cursor: pointer; transition: background .2s, transform .2s;
}
.admin-bar button:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.admin-bar button.primary { background: var(--lime); color: #04210f; border-color: var(--lime); }
.admin-bar button.danger { border-color: rgba(255,120,120,.4); color: #ffb3b3; }

/* Modal admin */
.modal {
  position: fixed; inset: 0; z-index: 1100; display: none; place-items: center; padding: 20px;
  background: rgba(5,46,34,.55); backdrop-filter: blur(6px);
}
.modal.show { display: grid; }
.modal__box {
  background: var(--paper); border-radius: var(--radius); padding: 38px; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg); animation: pop .35s var(--ease);
}
@keyframes pop { from { transform: scale(.92) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__box h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal__box p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; }
.modal__box .lock { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(140deg, var(--emerald), var(--forest-2)); display: grid; place-items: center; margin-bottom: 18px; }
.modal__box .lock svg { width: 28px; height: 28px; color: var(--lime); }
.modal__box input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid rgba(8,32,26,.14);
  font-family: var(--body); font-size: 1rem; margin-bottom: 14px;
}
.modal__box input:focus { outline: none; border-color: var(--emerald); }
.modal__box .btn { width: 100%; }
.modal__err { color: #d33; font-size: .85rem; margin-bottom: 12px; display: none; }
.modal__close { background: none; border: 0; font-size: .85rem; color: var(--ink-soft); cursor: pointer; margin-top: 16px; width: 100%; }

.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--cream); padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; z-index: 1200; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 9px;
}
.toast svg { width: 17px; height: 17px; color: var(--lime); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsivo
   ============================================================ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 100px 30px 40px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--display); font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid rgba(8,32,26,.08); }
.mobile-nav .btn { margin-top: 24px; }

@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .hero__grid, .ton__grid, .seg__grid, .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .creds__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card--feature { grid-column: span 2; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav, .header__cta .btn--wa span { display: none; }
  .burger { display: block; }
  .about__points, .ton__benefits { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cards, .steps__grid, .creds__grid, .footer__grid, .about__points { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 1; }
  .hero__float--1 { left: -6px; } .hero__float--2 { right: -6px; }
  .topbar__marquee span:nth-child(n+2) { display: none; }
  .ton__partner { left: 8px; } .ton__badge { right: 8px; }
  .admin-bar { flex-direction: column; align-items: stretch; }
  .admin-bar__status { margin: 0 0 6px; justify-content: center; }
}
