/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* hero (escuro) */
  --bg: #05070d;
  --text: #f6f8fc;
  --muted: #b6bdcc;
  --accent: #ff9e2c;
  --accent-2: #36d1ff;
  --green: #1faf54;
  --ease: cubic-bezier(.16,.84,.44,1);

  /* tema claro (seções) */
  --cream: #f6f3ed;
  --white: #ffffff;
  --ink: #16181d;
  --body: #565d6b;
  --muted2: #8c92a0;
  --line: #e9e3d9;
  --accent-ink: #bd6410;
  --accent-soft: rgba(255,158,44,.12);
  --green-ink: #1a8f47;

  --r: 16px;
  --r-lg: 26px;
  --shadow-sm: 0 6px 24px rgba(20,22,34,.06);
  --shadow: 0 28px 64px rgba(20,22,34,.12);
  --shadow-img: 0 40px 80px rgba(20,22,34,.20);
}

html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  font-family: "Satoshi", system-ui, sans-serif;
  background: var(--white);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
[data-lucide] { width: 1em; height: 1em; stroke-width: 2; display: inline-block; vertical-align: middle; }

/* ======================================================
   HERO (escuro / cinematográfico)
   ====================================================== */
.hero {
  position: relative; height: 100svh;
  display: flex; flex-direction: column; overflow: hidden;
  padding: clamp(18px, 3.4vh, 36px) clamp(22px, 5vw, 72px);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -5;
  filter: contrast(1.14) saturate(1.28) brightness(1.04) sepia(.22) hue-rotate(-12deg);
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }

.grade { position: absolute; inset: 0; pointer-events: none; }
.grade--tint { z-index: -4; background: linear-gradient(115deg, rgba(255,138,30,.45) 0%, rgba(255,170,60,.12) 38%, rgba(20,40,90,.30) 100%); mix-blend-mode: soft-light; }
.grade--shadow { z-index: -3; background: linear-gradient(180deg, rgba(4,6,12,.86) 0%, rgba(4,6,12,.32) 26%, rgba(4,6,12,.34) 54%, rgba(4,6,12,.9) 100%); }
.grade--vignette { z-index: -2; background: radial-gradient(120% 90% at 50% 44%, transparent 38%, rgba(4,6,12,.6) 100%); }
.grade--grain { z-index: -1; opacity: .07; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.hero__topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-shrink: 0; z-index: 2; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { font-size: 22px; color: var(--accent); filter: drop-shadow(0 0 8px rgba(255,158,44,.6)); }
.brand__name { font-family: "Bricolage Grotesque", sans-serif; font-size: 19px; font-weight: 600; letter-spacing: .2px; color: var(--text); }
.brand__name strong { font-weight: 700; }
.hero__nav { display: flex; align-items: center; gap: 28px; }
.hero__nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.hero__nav a:hover { color: var(--text); }
.hero__nav-cta {
  display: inline-flex; align-items: center; gap: 8px; color: var(--text) !important;
  border: 1px solid rgba(255,255,255,.22); padding: 9px 16px; border-radius: 999px;
  backdrop-filter: blur(6px); background: rgba(255,255,255,.06); transition: all .2s var(--ease);
}
.hero__nav-cta i { font-size: 16px; }
.hero__nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #1a1205 !important; }

.hero__content {
  flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; max-width: 800px; width: 100%; margin: 0 auto; z-index: 2;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: clamp(11px, 1.5vh, 13px); font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 15px; border-radius: 999px; backdrop-filter: blur(8px); margin-bottom: clamp(16px, 2.6vh, 26px);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 0 rgba(37,211,102,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6);} 70% { box-shadow: 0 0 0 10px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.hero__title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: clamp(40px, 7vw, 88px); line-height: .98; letter-spacing: -2px; text-shadow: 0 6px 40px rgba(0,0,0,.6); color: var(--text); }
.hero__title-line { display: block; }
.hero__title-accent { font-weight: 700; color: #ffba42; text-shadow: 0 4px 30px rgba(255,158,44,.35), 0 6px 40px rgba(0,0,0,.5); }
.hero__subtitle { margin-top: clamp(16px, 2.4vh, 24px); font-size: clamp(15px, 1.95vh, 19px); line-height: 1.55; color: var(--muted); max-width: 580px; }

.hero__actions { display: flex; gap: 14px; margin-top: clamp(22px, 3.6vh, 36px); flex-wrap: wrap; justify-content: center; }

.hero__proof { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.4vw, 26px); flex-wrap: wrap; margin-top: clamp(24px, 4vh, 44px); }
.proof { display: flex; flex-direction: column; gap: 1px; }
.proof strong { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(17px, 2.3vh, 21px); font-weight: 700; color: var(--text); }
.proof span { font-size: 12.5px; color: var(--muted); }
.proof__divider { width: 1px; height: 30px; background: rgba(255,255,255,.16); }

.hero__hud { display: flex; align-items: center; gap: 28px; flex-shrink: 0; z-index: 2; font-family: "Bricolage Grotesque", sans-serif; }
.hud__item { display: flex; flex-direction: column; gap: 3px; }
.hud__label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.hud__value { font-size: 15px; font-weight: 700; color: #67dcff; text-shadow: 0 0 12px rgba(54,209,255,.4); }
.hud__scroll { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
.hud__arrow { font-size: 17px; color: var(--text); animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ======================================================
   BOTÕES (compartilhados)
   ====================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 999px; text-decoration: none; cursor: pointer; border: none;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn--primary { color: #1a1205; background: linear-gradient(100deg, var(--accent), #ffce6b); box-shadow: 0 10px 30px rgba(255,158,44,.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(255,158,44,.5); }
.btn__icon { font-size: 19px; }
.btn--ghost { color: var(--text); border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.05); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--ghost .btn__icon { transition: transform .2s var(--ease); }
.btn--ghost:hover .btn__icon { transform: translateX(4px); }
.btn--dark { color: #fff; background: var(--ink); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(22,24,29,.28); }
.btn--block { width: 100%; justify-content: center; margin-top: 6px; }

/* ======================================================
   SEÇÕES (tema claro)
   ====================================================== */
.sec { padding: clamp(64px, 9vh, 130px) 0; background: var(--white); }
.sec--cream { background: var(--cream); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Satoshi", sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 18px;
}
.kicker i { font-size: 15px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 12.5px;
  letter-spacing: .8px; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.badge--green { color: var(--green-ink); background: rgba(31,175,84,.10); border: 1px solid rgba(31,175,84,.28); }
.badge--green i { font-size: 15px; }

.h2 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); font-size: clamp(29px, 4.2vw, 50px); line-height: 1.04; letter-spacing: -1.5px; }
.lead { margin-top: 16px; color: var(--body); font-size: clamp(16px, 1.2vw, 19px); line-height: 1.62; }
.amber { color: var(--accent-ink); }

.sec__head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 6vh, 64px); }
.sec__head--left { text-align: left; margin-left: 0; margin-right: auto; }

/* ----- Split (texto + imagem) ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split--reverse .split__media { order: -1; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.ticks { list-style: none; margin: 24px 0 4px; display: grid; gap: 13px; }
.ticks li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink); font-weight: 500; }
.ticks i { color: var(--green-ink); font-size: 20px; flex-shrink: 0; }

.split__media { position: relative; }
.media-frame { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-img); }
.media-frame--tall { aspect-ratio: 4 / 4.4; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

.float-card {
  position: absolute; left: -22px; bottom: 28px; display: flex; align-items: center; gap: 13px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
}
.float-card i { color: var(--accent-ink); font-size: 26px; background: var(--accent-soft); padding: 9px; border-radius: 11px; }
.float-card strong { display: block; font-family: "Bricolage Grotesque", sans-serif; color: var(--ink); font-size: 15px; }
.float-card span { font-size: 13px; color: var(--muted2); }
.float-card--alt { left: auto; right: -22px; bottom: 32px; }

/* ----- Categorias (tiles) ----- */
.cat-tiles { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; margin-bottom: 20px; }
.tile { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 360px; box-shadow: var(--shadow-sm); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,18,.88) 0%, rgba(10,12,18,.25) 45%, rgba(10,12,18,0) 70%); }
.tile__overlay { position: absolute; left: 0; bottom: 0; padding: 28px 28px 26px; z-index: 1; color: #fff; }
.tile__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #ffce6b; margin-bottom: 8px; }
.tile__overlay h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 30px; letter-spacing: -.5px; }
.tile__overlay p { color: rgba(255,255,255,.82); margin-top: 6px; font-size: 15px; line-height: 1.5; max-width: 420px; }
.tile__ribbon { position: absolute; top: 18px; right: 18px; z-index: 2; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #1a1205; background: var(--accent); padding: 6px 12px; border-radius: 999px; }

.cat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-mini { display: flex; align-items: center; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); text-decoration: none; transition: border-color .2s, transform .2s; }
.cat-mini:hover { border-color: rgba(255,158,44,.5); transform: translateY(-3px); }
.cat-mini > i { color: var(--accent-ink); font-size: 26px; flex-shrink: 0; }
.cat-mini h4 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); font-size: 17px; }
.cat-mini p { font-size: 14px; color: var(--body); margin-top: 3px; }
.cat-mini--cta { background: var(--ink); border-color: var(--ink); }
.cat-mini--cta i, .cat-mini--cta h4 { color: #fff; }
.cat-mini--cta p { color: rgba(255,255,255,.7); }

/* ----- Timeline (como funciona) ----- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline__line { position: absolute; top: 32px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.tl-step { position: relative; text-align: center; padding: 0 8px; }
.tl-step__num {
  width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 20px; color: var(--accent-ink);
  background: var(--white); border: 2px solid var(--accent); border-radius: 50%; box-shadow: 0 8px 24px rgba(255,158,44,.18); position: relative; z-index: 1;
}
.sec--cream .tl-step__num { background: var(--cream); }
.tl-step > i { color: var(--accent-ink); font-size: 24px; margin-bottom: 12px; }
.tl-step h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); font-size: 20px; letter-spacing: -.4px; }
.tl-step p { color: var(--body); margin-top: 8px; font-size: 14.5px; line-height: 1.55; }

/* ----- Por que (why list) ----- */
.why { list-style: none; margin-top: 28px; display: grid; gap: 20px; }
.why li { display: flex; gap: 16px; align-items: flex-start; }
.why__ic { flex-shrink: 0; width: 50px; height: 50px; display: grid; place-items: center; color: var(--accent-ink); background: var(--accent-soft); border-radius: 13px; }
.why__ic i { font-size: 23px; }
.why h4 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); font-size: 18px; letter-spacing: -.3px; }
.why p { color: var(--body); margin-top: 5px; font-size: 14.5px; line-height: 1.5; }

/* ----- FAQ ----- */
.faq { display: grid; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 24px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); font-size: clamp(16px, 1.4vw, 19px); transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 26px; color: var(--accent-ink); font-weight: 400; line-height: 1; transition: transform .25s var(--ease); }
.faq__item[open] summary { color: var(--accent-ink); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--body); padding: 0 4px 24px; line-height: 1.65; max-width: 92%; }

/* ----- Contato / form ----- */
.contato__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
.form { margin-top: 28px; display: grid; gap: 16px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: grid; gap: 7px; }
.form__field span { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form__field input, .form__field select {
  font-family: "Satoshi", sans-serif; font-size: 15px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form__field input::placeholder { color: #aab0bc; }
.form__field input:focus, .form__field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.form__field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23bd6410' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form__note { font-size: 12.5px; color: var(--muted2); text-align: center; margin-top: 2px; }
.form__success { display: flex; align-items: center; gap: 14px; background: rgba(31,175,84,.10); border: 1px solid rgba(31,175,84,.32); border-radius: 14px; padding: 20px; }
.form__success i { color: var(--green-ink); font-size: 30px; flex-shrink: 0; }
.form__success strong { display: block; font-family: "Bricolage Grotesque", sans-serif; color: var(--ink); font-size: 18px; }
.form__success span { color: var(--body); font-size: 14px; }

.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; }
.info-card h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); font-size: 22px; letter-spacing: -.5px; margin-bottom: 18px; }
.info-list { list-style: none; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; line-height: 1.45; color: var(--body); }
.info-list i { color: var(--accent-ink); font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.info-list a { color: var(--body); text-decoration: none; transition: color .2s; }
.info-list a:hover { color: var(--accent-ink); }
.map { margin-top: 18px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); height: 240px; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* ----- Footer (escuro intencional) ----- */
.footer { padding: 56px 0 44px; background: var(--ink); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer .brand__name { color: #fff; }
.footer__addr { color: #aab0bc; font-size: 14.5px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: #cbd0db; text-decoration: none; font-size: 14.5px; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { color: #6c7486; font-size: 13px; margin-top: 6px; }

/* ----- WhatsApp flutuante ----- */
.whats-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 12px 30px rgba(37,211,102,.42); transition: transform .2s var(--ease);
}
.whats-float i { font-size: 28px; }
.whats-float svg { width: 30px; height: 30px; }
.whats-float:hover { transform: scale(1.08); }

/* ======================================================
   RESPONSIVO
   ====================================================== */
@media (max-width: 980px) {
  .split, .split--reverse .split__media { order: 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .cat-tiles { grid-template-columns: 1fr; }
  .cat-row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .timeline__line { display: none; }
  .contato__grid { grid-template-columns: 1fr; }
  .hero__nav a:not(.hero__nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .float-card, .float-card--alt { left: 12px; right: auto; bottom: 12px; }
  .proof__divider:nth-of-type(2) { display: none; }
  .hud__item:nth-child(2) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video, .hud__arrow, .pulse { animation: none; }
}
