/* Barba Locadora: estilos compartilhados entre as páginas */
:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --ink: #161b26;
  --ink-soft: #566070;
  --navy: #0f4670;
  --navy-2: #2c496e;
  --navy-deep: #0d1d33;
  --on-deep: #ffffff;
  --on-deep-soft: #c3d2e4;
  --rust: #b23305;
  --gold: #ffde59;
  --gold-ink: #3d3000;
  --whats: #11843b;
  --whats-hover: #0e7433;
  --whats-ink: #ffffff;
  --line: rgba(15, 27, 38, .10);
  --line-strong: rgba(15, 27, 38, .18);
  --shadow-sm: 0 1px 2px rgba(15,27,38,.05);
  --shadow-md: 0 14px 34px -18px rgba(15,27,38,.28);
  color-scheme: light;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.55 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.wrap { max-width: 1140px; margin: 0 auto; padding-inline: 20px; }
h1, h2, h3 { font-family: 'Sora', ui-sans-serif, system-ui, sans-serif; font-weight: 700; line-height: 1.1; margin: 0; text-wrap: balance; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 6px; }
.ico { width: 18px; height: 18px; flex: none; }

/* Faixa de confiança */
.trust { background: var(--navy-deep); color: var(--on-deep); }
.trust ul { list-style: none; margin: 0; padding-block: 9px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 26px; font-size: 13px; font-weight: 600; }
.trust li { display: flex; align-items: center; gap: 7px; }
.trust .ico { width: 15px; height: 15px; color: var(--gold); }

/* Cabeçalho */
header.site { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand { display: block; text-decoration: none; }
.brand img { height: 46px; width: auto; }
nav.main { display: flex; align-items: center; gap: 22px; font-size: 14.5px; font-weight: 600; }
nav.main a { text-decoration: none; color: var(--ink-soft); }
nav.main a:hover, nav.main a[aria-current] { color: var(--ink); }
.nav-whats { display: inline-flex; align-items: center; gap: 7px; background: var(--whats); color: var(--whats-ink) !important; padding: 8px 14px; border-radius: 9px; }
@media (max-width: 720px) { nav.main .hide-sm { display: none; } .brand img { height: 40px; } }

/* Menu mobile */
.menu-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border: 1.5px solid var(--line-strong); border-radius: 9px; background: var(--surface); color: var(--ink); cursor: pointer; }
.menu-toggle .ico { width: 20px; height: 20px; }
@media (max-width: 720px) { .menu-toggle { display: inline-flex; } }
.mobile-menu { display: none; flex-direction: column; border-top: 1px solid var(--line); background: var(--surface); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 20px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; border-top: 1px solid var(--line); }
.mobile-menu a:first-child { border-top: 0; }
.mobile-menu a[aria-current] { color: var(--navy); }

/* Botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font: 700 16px/1 'Plus Jakarta Sans', sans-serif; padding: 16px 24px; border-radius: 12px; text-decoration: none; border: 0; cursor: pointer; transition: background-color .15s, transform .15s; }
.btn-whats { background: var(--whats); color: var(--whats-ink); box-shadow: 0 10px 22px -12px rgba(17,132,59,.9); }
.btn-whats:hover { background: var(--whats-hover); transform: translateY(-1px); }
/* Brilho passando pelo botão de WhatsApp */
.btn-whats, .nav-whats { position: relative; overflow: hidden; isolation: isolate; }
.btn-whats::after, .nav-whats::after {
  content: ""; position: absolute; inset: -20% auto -20% -60%; width: 45%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); animation: shine 3.2s ease-in-out infinite; pointer-events: none;
}
.nav-whats::after { animation-delay: 1.6s; }
@keyframes shine { 0%, 55% { left: -60%; } 85%, 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .btn-whats::after, .nav-whats::after { animation: none; display: none; } }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); }

/* Hero */
.hero { background: radial-gradient(900px 340px at 0% 0%, color-mix(in srgb, var(--navy) 11%, transparent), transparent 65%), var(--surface); padding-block: 48px 52px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 999px; background: color-mix(in srgb, var(--navy) 11%, transparent); color: var(--navy); border: 1px solid color-mix(in srgb, var(--navy) 28%, transparent); }
.hero h1 { font-size: clamp(32px, 4.8vw, 54px); margin-top: 18px; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--rust); }
.hero .sub { margin-top: 18px; font-size: 18px; color: var(--ink-soft); max-width: 50ch; }
.hero .sub strong { color: var(--ink); }
.cta-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.proof { margin: 26px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.proof li { display: flex; align-items: center; gap: 8px; }
.proof .ico { color: var(--rust); }

/* Ilustração do topo */
.illo { position: relative; }
.illo > svg { display: block; width: 100%; height: auto; }
.illo .chip { position: absolute; display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); border-radius: 12px; padding: 10px 14px; font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.illo .chip .ico { color: var(--rust); }
.illo .chip b { color: var(--rust); font-family: 'Sora'; }
.illo-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.illo .chip.a { top: 8%; left: -2%; }
.illo .chip.b { top: 30%; right: -2%; }
@media (max-width: 820px) { .illo .chip { font-size: 12.5px; padding: 8px 11px; } .illo .chip.a { left: 0; } .illo .chip.b { right: 0; } }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding-block: 32px 40px; }
  .hero .sub { font-size: 16.5px; }
  .cta-row .btn { flex: 1 1 100%; }
}

/* Seções */
section.band { padding-block: 64px; }
section.band.alt { background: var(--surface-2); }
.sec-head { max-width: 640px; }
.sec-head h2 { font-size: clamp(25px, 3.2vw, 34px); }
.sec-head p { margin-top: 10px; color: var(--ink-soft); font-size: 16px; }

.reasons { margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reason { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-sm); }
.reason .ic { width: 42px; height: 42px; border-radius: 11px; background: color-mix(in srgb, var(--navy) 11%, transparent); color: var(--navy); display: grid; place-items: center; margin-bottom: 14px; }
.reason .ic .ico { width: 21px; height: 21px; }
.reason h3 { font-size: 17px; }
.reason p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 960px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reasons { grid-template-columns: 1fr; } }

/* Categorias */
.cats { margin-top: 30px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
/* Abaixo de 1000px as 5 categorias viram uma fileira que desliza para o lado (nenhum card fica sozinho numa linha) */
@media (max-width: 1000px) {
  .cats { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; margin-inline: -20px; padding-inline: 20px; scroll-padding-inline: 20px; }
  .cats::-webkit-scrollbar { display: none; }
  .cats .cat { flex: 0 0 260px; scroll-snap-align: start; }
}
.cats-hint { display: none; margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
@media (max-width: 1000px) { .cats-hint { display: block; } }
.cat { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.cat .photo { background: var(--surface-2); overflow: hidden; }
.cat .photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cat .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.cat .tag { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
.cat h3 { font-size: 17px; margin-top: 8px; }
.cat .why { margin-top: 8px; font-size: 14px; color: var(--ink-soft); flex: 1; }
.cat .price { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--line-strong); }
.cat .from { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); font-weight: 600; }
.cat .amt { font-family: 'Sora'; font-weight: 800; font-size: 30px; color: var(--navy); font-variant-numeric: tabular-nums; line-height: 1.15; }
.cat .amt small { font: 600 13px 'Plus Jakarta Sans', sans-serif; color: var(--ink-soft); }
.cat .day { font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.cat.popular { border: 2px solid var(--navy-2); }
.cat.popular .photo { position: relative; }
.cat.popular .photo::after { content: "Mais procurada"; position: absolute; top: 10px; left: 10px; font-size: 11.5px; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: var(--gold); color: var(--gold-ink); }
.cats-foot { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; font-size: 14.5px; color: var(--ink-soft); }
.cats-foot a:not(.btn) { font-weight: 700; color: var(--navy); }

/* Faixa escura de destaque (bônus / oferta) */
.bonus { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; background: var(--navy-deep); color: var(--on-deep); border-radius: 20px; padding: 30px; }
.bonus .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--rust); display: grid; place-items: center; color: #fff; }
.bonus .ic .ico { width: 28px; height: 28px; }
.bonus h2 { color: var(--on-deep); font-size: clamp(20px, 2.6vw, 26px); }
.bonus p { margin-top: 8px; color: var(--on-deep-soft); font-size: 15px; max-width: 60ch; }
.bonus .btn { background: var(--gold); color: var(--gold-ink); white-space: nowrap; }
@media (max-width: 760px) { .bonus { grid-template-columns: 1fr; padding: 24px; } .bonus .btn { width: 100%; } }

.bonus.has-photo { grid-template-columns: 160px 1fr auto; }
.bonus-photo { width: 100%; height: 140px; object-fit: cover; border-radius: 14px; }
.bonus-main { display: flex; align-items: center; gap: 22px; }
@media (max-width: 760px) { .bonus.has-photo { grid-template-columns: 1fr; } .bonus-photo { height: 180px; } .bonus-main { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* Depoimentos */
.testimonials-carousel { margin-top: 30px; }
.testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; flex: 0 0 calc((100% - 24px) / 3); scroll-snap-align: start; }
.testimonial .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.testimonial .quote { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); flex: 1; line-height: 1.55; }
.testimonial .author { margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.testimonial .author .avatar-photo { width: 38px; height: 38px; aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; flex: none; background: none; }
@media (max-width: 900px) { .testimonial { flex-basis: calc((100% - 12px) / 2); } }
@media (max-width: 620px) { .testimonial { flex-basis: 84%; } }

.offer { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center; background: linear-gradient(135deg, var(--navy-deep), #1b3a5f); color: var(--on-deep); border-radius: 22px; padding: 36px; }
.offer .tag { display: inline-block; background: var(--gold); color: var(--gold-ink); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.offer h2 { color: var(--on-deep); font-size: clamp(22px, 3vw, 30px); margin-top: 14px; }
.offer p { margin-top: 12px; color: var(--on-deep-soft); font-size: 15.5px; max-width: 52ch; }
.offer .price-box { text-align: right; }
.offer .from { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--on-deep-soft); font-weight: 600; }
.offer .amt { font-family: 'Sora'; font-weight: 800; font-size: clamp(40px, 5vw, 54px); color: var(--gold); font-variant-numeric: tabular-nums; line-height: 1.05; }
.offer .amt small { font: 600 15px 'Plus Jakarta Sans', sans-serif; color: var(--on-deep-soft); }
.offer .km { margin-top: 8px; font-size: 14px; color: var(--on-deep-soft); }
@media (max-width: 720px) { .offer { grid-template-columns: 1fr; padding: 26px; } .offer .price-box { text-align: left; } }

.offer.has-photo { grid-template-columns: 160px 1.3fr 1fr; }
.offer-photo { width: 100%; height: 150px; object-fit: cover; border-radius: 16px; }
@media (max-width: 720px) { .offer.has-photo { grid-template-columns: 1fr; } .offer-photo { height: 180px; } }

/* Grade de modelos com foto */
.models { margin-top: 28px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.model { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.model img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface-2); }
.model figcaption { padding: 10px 12px; font-weight: 700; font-size: 14.5px; }
.model figcaption span { display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }
.models-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 960px) { .models { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .models { grid-template-columns: repeat(2, 1fr); } }

/* Página Frota */
.hero.slim { padding-block: 44px 40px; }
.hero.slim h1 { max-width: 22ch; }
.cat-nav { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.cat-nav a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--navy); background: var(--surface); border: 1px solid color-mix(in srgb, var(--navy) 28%, transparent); padding: 8px 14px; border-radius: 999px; }
.cat-nav a:hover { background: color-mix(in srgb, var(--navy) 8%, var(--surface)); }
.fleet-group { padding-block: 44px; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.fleet-group:first-child { border-top: 0; }
.fleet-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px 24px; }
.fleet-head .tag { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rust); }
.fleet-head h2 { font-size: clamp(22px, 2.8vw, 28px); margin-top: 6px; }
.fleet-head .price { margin-top: 6px; color: var(--ink-soft); font-size: 15px; }
.fleet-head .price b { font-family: 'Sora'; color: var(--navy); font-size: 18px; font-variant-numeric: tabular-nums; }
.fleet-head .btn { padding: 12px 18px; font-size: 15px; }
.models.auto { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); margin-top: 22px; }
.model .soon { width: 100%; aspect-ratio: 4 / 3; background: var(--surface-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--ink-soft); font-size: 12.5px; font-weight: 600; }
.model .soon .ico { width: 34px; height: 34px; opacity: .55; }

/* Categoria de entrega, destacada */
.fleet-group.entrega-highlight { background: var(--navy-deep); color: var(--on-deep); border-radius: 24px; padding: 40px 28px; border-top: 0; margin-block: 16px; }
.fleet-group.entrega-highlight .tag { color: var(--gold); }
.fleet-group.entrega-highlight h2 { color: var(--on-deep); font-size: clamp(26px, 3.6vw, 36px); margin-top: 8px; }
.fleet-group.entrega-highlight .fleet-sub { margin-top: 8px; font-size: 16px; color: var(--on-deep-soft); }
.fleet-group.entrega-highlight .price { color: var(--on-deep-soft); }
.fleet-group.entrega-highlight .price b { color: var(--gold); }
.fleet-group.entrega-highlight .models-note { color: var(--on-deep-soft); }
.fleet-group.entrega-highlight .models-note a { color: var(--gold); font-weight: 700; }
.fleet-group.entrega-highlight .carousel .nav { background: var(--surface); }

/* Carrossel de fotos da frota */
.carousel { position: relative; margin-top: 22px; }
.carousel .track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; overscroll-behavior-x: contain; border-radius: 14px; }
.carousel .track::-webkit-scrollbar { display: none; }
.carousel .track img { flex: 0 0 calc((100% - 24px) / 3); aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; scroll-snap-align: start; background: var(--surface-2); }
.carousel .nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--surface); color: var(--navy); box-shadow: var(--shadow-md); display: grid; place-items: center; cursor: pointer; z-index: 2; }
.carousel .nav .ico { width: 22px; height: 22px; }
.carousel .nav.prev { left: -14px; }
.carousel .nav.next { right: -14px; }
.carousel .nav:disabled { opacity: 0; pointer-events: none; }
.carousel .dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
.carousel .dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); transition: background-color .2s, width .2s; }
.carousel .dots span.on { width: 20px; border-radius: 4px; background: var(--navy); }
.carousel.static .nav, .carousel.static .dots { display: none; }
@media (max-width: 820px) { .carousel .track img { flex-basis: calc((100% - 12px) / 2); } }
@media (max-width: 540px) { .carousel .track img { flex-basis: 84%; } .carousel .nav { display: none; } }
.photo-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-soft); }

/* Página Contato */
.contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: stretch; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 8px 26px; box-shadow: var(--shadow-sm); }
.contact-row { display: flex; align-items: center; gap: 16px; padding-block: 20px; border-top: 1px solid var(--line); }
.contact-row:first-child { border-top: 0; }
.contact-row .ic { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--navy) 10%, transparent); color: var(--navy); display: grid; place-items: center; flex: none; }
.contact-row .ic .ico { width: 22px; height: 22px; }
.contact-row .k { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.contact-row .v { font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; }
.contact-cta { background: var(--navy-deep); color: var(--on-deep); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.contact-cta h2 { color: var(--on-deep); font-size: 24px; }
.contact-cta p { color: var(--on-deep-soft); }
.contact-cta .btn { font-size: 18px; padding: 20px 24px; }
@media (max-width: 760px) { .contact { grid-template-columns: 1fr; } }

/* Tabela de preços */
.pill.gold { background: var(--gold); color: var(--gold-ink); border-color: transparent; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.price-card header { padding: 16px 20px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.price-card h2 { font-size: 18px; }
.price-card header p { margin-top: 3px; font-size: 13.5px; color: var(--ink-soft); }
.price-card table { width: 100%; border-collapse: collapse; font-size: 15px; font-variant-numeric: tabular-nums; }
.price-card th { text-align: left; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); padding: 12px 20px 6px; }
.price-card th:not(:first-child), .price-card td:not(:first-child) { text-align: right; }
.price-card td { padding: 10px 20px; border-top: 1px solid var(--line); }
.price-card td:first-child { font-weight: 600; }
.price-card td.wk { font-family: 'Sora'; font-weight: 700; color: var(--navy); }
.price-card tr.free td:first-child { color: var(--rust); }
.km-note { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); }
.km-note b { color: var(--ink); }
.reason ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; font-size: 14.5px; color: var(--ink-soft); }
.reason li { position: relative; padding-left: 20px; }
.reason li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--rust); }
.reason .foot { margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.terms { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 960px) { .terms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .terms { grid-template-columns: 1fr; } }

/* FAQ */
.faq { margin-top: 26px; max-width: 780px; border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 2px; font-weight: 700; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: var(--navy); transition: transform .2s; }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq .a { padding: 0 2px 20px; color: var(--ink-soft); max-width: 64ch; }

/* CTA final */
.final { background: var(--navy-deep); color: var(--on-deep); text-align: center; padding-block: 64px; }
.final h2 { color: var(--on-deep); font-size: clamp(26px, 3.6vw, 38px); }
.final p { margin-top: 12px; color: var(--on-deep-soft); font-size: 17px; }
.final .btn { margin-top: 26px; }
.final .num { margin-top: 14px; font-size: 14px; color: var(--on-deep-soft); font-variant-numeric: tabular-nums; }

footer.site { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.08); color: var(--on-deep-soft); font-size: 13.5px; padding-block: 22px 96px; }
footer.site .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
footer.site a { color: var(--on-deep); text-decoration: none; }
footer.site img { height: 34px; width: auto; }

/* Botão fixo de WhatsApp no celular — bolinha discreta no canto */
.float-whats { position: fixed; left: auto; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 30; display: none; width: 54px; height: 54px; padding: 0; border-radius: 50%; box-shadow: 0 8px 22px -8px rgba(0,0,0,.5); }
.float-whats .ico { width: 26px; height: 26px; }
.float-whats .label { display: none; }
@media (max-width: 720px) { .float-whats { display: flex; } }
@media (min-width: 721px) { footer.site { padding-block: 22px; } }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
