/* ========================================
   CLUBE UNIR - CSS PRINCIPAL
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

/* ========================================
   VARIÁVEIS
   ======================================== */
:root {
  color-scheme: only light;
  --verde: #00ae4d;
  --verde-escuro: #009040;
  --verde-claro: #e6f9ee;
  --branco: #ffffff;
  --cinza-50: #f8faf9;
  --cinza-100: #f0f2f1;
  --cinza-200: #dce0dd;
  --cinza-400: #8a9190;
  --cinza-600: #4a5553;
  --cinza-800: #2b2b2b;
  --cinza-900: #0d1210;
  --amarelo: #f5c518;
  --vermelho: #dc3545;
  --sombra-sm: 0 1px 3px rgba(0,0,0,0.08);
  --sombra-md: 0 4px 16px rgba(0,0,0,0.1);
  --sombra-lg: 0 8px 32px rgba(0,0,0,0.12);
  --sombra-verde: 0 4px 20px rgba(0,174,77,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cinza-800);
  background: var(--branco);
  overflow-x: hidden;
}

/* Reafirma as cores claras quando o SO/navegador pede modo escuro —
   isso impede alguns navegadores (principalmente Android/Chrome) de
   "forçarem" um tema escuro heurístico por cima do site, que inverte
   o fundo mas não o texto de forma consistente (ex.: títulos com
   cor escura "somem" contra um fundo que virou preto). O color-scheme:
   only light acima já deveria bastar, mas isso é um reforço direto
   nos elementos onde o bug foi observado. */
@media (prefers-color-scheme: dark) {
  body {
    color: var(--cinza-800);
    background: var(--branco);
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--cinza-900);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--verde);
  text-decoration: none;
  transition: var(--transicao);
}

a:hover {
  color: var(--verde-escuro);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cinza-900);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   NAVBAR
   ======================================== */
/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(13,18,16,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: 80px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

.logo-navbar-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Evita sobrepor menu */
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.15rem 0.65rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: var(--transicao);
}

.nav-links a:hover {
  color: var(--verde);
  background: rgba(0,174,77,.12);
}

.nav-links .btn-cta {
  background: var(--verde);
  color: var(--branco) !important;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav-links .btn-cta:hover {
  background: var(--verde-escuro);
  box-shadow: var(--sombra-verde);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.78);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  flex-shrink: 0;
}

/* ========================================
   HERO
   ======================================== */
main {
  padding-top: 80px;
}

.pagina-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-color: var(--cinza-900);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pagina-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,18,16,.85) 0%, rgba(13,18,16,.55) 45%, rgba(13,18,16,.2) 80%);
  pointer-events: none;
}

.pagina-hero .container {
  position: relative;
  max-width: 960px;
  margin: 0;
  padding-left: 7rem;
  z-index: 1;
}

.pagina-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.pagina-hero h1 span {
  color: var(--verde);
}

.pagina-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .pagina-hero {
    min-height: 440px;
  }

  .pagina-hero .container {
    padding-left: 1.5rem;
  }

  .pagina-hero h1 {
    font-size: 1.7rem;
  }
}

.hero {
  padding: 3rem 0 0;
  background:
    linear-gradient(90deg, rgba(13,18,16,.4) 0%, rgba(13,18,16,.2) 40%, rgba(13,18,16,0) 70%),
    url('../img/uploads/hero arte final(talvez).png') center top/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Fallback para pages sem .hero-grid */
.hero > .container:not(.hero-grid) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-texto h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--branco);
}

.hero-texto h1 span {
  color: var(--verde);
}

.hero-texto p {
  font-size: 1rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 0;
  max-width: 500px;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

.hero-esquerda .hero-texto p {
  display: inline-block;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  max-width: none;
}

.hero-esquerda .lp-checklist li {
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
}

.hero-destaques {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-destaques .destaque {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.destaque-icone {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0,174,77,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.destaque h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--branco);
}

.destaque p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.62);
  margin: 0;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
  position: relative;
  z-index: 1;
}

.hero-esquerda {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-direita {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ícones de veículos atendidos na hero */
.hero-veiculos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem;
  background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(20,20,20,.45), rgba(0,0,0,.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-veiculo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  flex: 1;
  transition: opacity .25s ease, transform .25s ease;
  cursor: default;
}

.hero-veiculo-item:hover {
  opacity: 1;
  transform: scale(1.18);
}

.hero-veiculo-icone {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
}

.hero-veiculo-icone svg {
  width: 28px;
  height: 28px;
  stroke: var(--branco);
}

.hero-veiculo-icone img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-veiculo-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .hero-veiculos {
    padding: 0.75rem 1rem;
    gap: 0;
  }

  .hero-veiculo-icone {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .hero-veiculo-icone img {
    width: 26px;
    height: 26px;
  }

  .hero-veiculo-icone svg {
    width: 20px;
    height: 20px;
  }

  .hero-veiculo-item span {
    font-size: 0.6rem;
  }
}

/* Seção "Quais carros atendemos" — ocultada a pedido do cliente.
   Substituída por .hero-veiculos na hero. Reativar removendo este bloco. */
#carros-atendidos {
  display: none;
}

/* Form inline na hero */
.hero-form-inline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: -1rem;
  margin-bottom: -0.75rem;
}

.hero-direita img {
  width: 125%;
  max-width: unset;
  position: relative;
  z-index: 2;
  transform: translateX(60px) translateY(20px);
  filter: drop-shadow(0 26px 24px rgba(0,0,0,.5));
}

.hero-arte-animada {
  opacity: 0;
  animation: heroCarroEntrada 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
  will-change: transform, opacity, filter;
}

/* ========================================
   FORMULÁRIO DE COTAÇÃO
   ======================================== */
.form-cotacao-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--sombra-lg);
  border: 1px solid var(--cinza-100);
  max-width: 520px;
  border: 1px solid var(--cinza-100);
}

.form-cotacao-card h2 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-cotacao-card .subtitulo {
  text-align: center;
  color: var(--cinza-400);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-cotacao {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cinza-700);
  letter-spacing: 0.01em;
}

.form-cotacao textarea {
  resize: none;
}

.form-cotacao input[type="text"],
.form-cotacao input[type="tel"],
.form-cotacao input[type="email"],
.form-cotacao textarea,
.form-cotacao select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cinza-800);
  background: var(--cinza-50);
  transition: var(--transicao);
}

.form-cotacao input:focus,
.form-cotacao textarea:focus,
.form-cotacao select:focus {
  outline: none;
  border-color: var(--verde);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(0,174,77,0.1);
}

.form-cotacao input::placeholder {
  color: var(--cinza-400);
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transicao);
  text-align: center;
}

.btn-verde {
  background: var(--verde);
  color: var(--branco);
}

.btn-verde:hover {
  background: var(--verde-escuro);
  box-shadow: var(--sombra-verde);
  transform: translateY(-1px);
  color: var(--branco);
}

.btn-verde-outline {
  background: transparent;
  color: var(--verde);
  border: 2px solid var(--verde);
}

.btn-verde-outline:hover {
  background: var(--verde);
  color: var(--branco);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--branco);
  border-radius: var(--radius-full);
  padding: 0.85rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-wpp-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  color: var(--branco);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ========================================
   SEÇÃO: BENEFÍCIOS
   ======================================== */
.secao {
  padding: 5rem 0;
}

.secao-titulo {
  text-align: center;
  margin-bottom: 3rem;
}

.secao-titulo h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.secao-titulo h2 span {
  color: var(--verde);
}

.secao-titulo p {
  color: var(--cinza-400);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.secao-verde {
  background: var(--verde);
  color: var(--branco);
}

.secao-verde h2,
.secao-verde h3,
.secao-verde p {
  color: var(--branco);
}

.secao-cinza {
  background: var(--cinza-50);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.beneficio-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--cinza-100);
  transition: var(--transicao);
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-md);
  border-color: var(--verde-claro);
}

.beneficio-card .icone {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: var(--verde-claro);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.beneficio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.beneficio-card p {
  font-size: 0.88rem;
  color: var(--cinza-400);
}

/* ========================================
   SEÇÃO: APP
   ======================================== */
.secao-app .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.secao-app h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.secao-app p {
  color: var(--cinza-600);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ========================================
   SECAO: APP + PARCEIROS (INSTITUCIONAL)
   ======================================== */
.secao-app-marcas {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00c065 0%, #008844 48%, #005030 100%);
}

.secao-app-marcas::before,
.secao-app-marcas::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.secao-app-marcas::before {
  width: 700px;
  height: 700px;
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 35%, transparent 68%);
}

.secao-app-marcas::after {
  width: 640px;
  height: 640px;
  right: -220px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(0,0,0,.42) 0%, rgba(0,0,0,.15) 38%, transparent 70%);
}

.secao-app-marcas .container {
  position: relative;
  z-index: 1;
}

.app-marcas-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.secao-app-marcas h2 {
  color: var(--branco);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.secao-app-marcas p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.app-marcas-card-wrap {
  text-align: center;
}

.app-marcas-card {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: inline-block;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.app-marcas-card img {
  width: 4rem;
  height: 4rem;
  display: block;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.75rem;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.app-marcas-card-titulo {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--branco);
}

.app-marcas-card-subtitulo {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.app-marcas-divider {
  width: 100%;
  height: 1px;
  margin: 2.75rem 0 2.25rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.app-marcas-bottom {
  text-align: center;
}

.secao-app-marcas .secao-titulo {
  margin-bottom: 2rem;
}

.secao-app-marcas .secao-titulo h2,
.secao-app-marcas .secao-titulo h2 span {
  color: var(--branco);
}

.secao-app-marcas .secao-titulo p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.app-marcas-logos {
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ========================================
   SEÇÃO: DEPOIMENTOS
   ======================================== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.depoimento-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--sombra-sm);
  border: 1px solid var(--cinza-100);
  border-left: 4px solid transparent;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s ease;
}

.depoimento-card:hover {
  border-left-color: var(--verde);
  box-shadow: 0 12px 36px rgba(0,174,77,.15), var(--sombra-md);
  transform: translateY(-5px) scale(1.015);
}

/* Stagger de entrada */
.depoimentos-grid .depoimento-card:nth-child(2) { transition-delay: 0.08s; }
.depoimentos-grid .depoimento-card:nth-child(3) { transition-delay: 0.16s; }
.depoimentos-grid .depoimento-card:nth-child(4) { transition-delay: 0.24s; }

.depoimento-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  color: var(--verde-claro);
  font-family: Georgia, serif;
  line-height: 1;
}

.depoimento-card p {
  font-size: 0.95rem;
  color: var(--cinza-600);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depoimento-avatar {
  width: 42px;
  height: 42px;
  background: var(--verde-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--verde);
}

.depoimento-autor h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.depoimento-autor span {
  font-size: 0.78rem;
  color: var(--cinza-400);
}

.depoimento-estrelas {
  color: var(--amarelo);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* Layout especial de depoimentos para institucional */
.secao-depoimentos {
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.depoimentos-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2rem;
  align-items: end;
}

.depoimentos-coluna {
  min-width: 0;
}

.depoimentos-coluna .secao-titulo p {
  margin: 0;
  max-width: none;
}

.digital-cards-col .secao-titulo h2 {
  font-size: 1.55rem;
}

br.mobile-break {
  display: none;
}

.lp-link-inline {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--verde);
  text-decoration: underline;
  cursor: pointer;
}

.lp-link-inline:hover {
  color: var(--verde-escuro);
}

.depoimentos-coluna .secao-cta-inline {
  padding-top: 2rem;
}

.depoimentos-arte-coluna {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  isolation: isolate;
}

.depoimentos-arte-coluna::before {
  content: none;
}

.depoimentos-arte-img {
  width: 250%;
  max-width: 750px;
  height: auto;
  margin-bottom: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.78) 86%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.78) 86%, rgba(0, 0, 0, 0) 100%);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.13));
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
  animation: arteFlutua 5s ease-in-out infinite;
}

@keyframes arteFlutua {
  0%, 100% { transform: translateX(14px) translateY(0px); }
  50%       { transform: translateX(14px) translateY(-14px); }
}

/* ========================================
   SEÇÃO: CTA
   ======================================== */
.secao-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00b860 0%, #008844 50%, #005a2e 100%);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: -2px;
}

.secao-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,255,255,.13) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(0,0,0,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 115%, rgba(0,0,0,.45) 0%, transparent 55%);
  pointer-events: none;
}

.secao-cta .container {
  position: relative;
  z-index: 1;
}

.secao-cta h2 {
  color: var(--branco);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.secao-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-botoes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
/* ---- Footer: topo ---- */
.footer {
  background: #080d0b;
  color: rgba(255,255,255,.55);
}

.footer-topo {
  padding: 2.5rem 0 1.75rem;
}

.footer-topo-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 36px;
  width: auto;
  display: block;
  opacity: .8;
  transition: opacity .2s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
  max-width: 520px;
  margin: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(0,174,77,.85);
  border: 1px solid rgba(0,174,77,.25);
  border-radius: 999px;
  padding: 0.22em 0.7em;
  background: rgba(0,174,77,.07);
  letter-spacing: 0.01em;
}

/* ---- Linha glow ---- */
.footer-glow-line {
  position: relative;
  height: 1px;
  background: rgba(0,174,77,.12);
}

.footer-glow-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,174,77,.5), transparent);
}

/* ---- Corpo: 4 colunas ---- */
.footer-corpo {
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col-titulo {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--verde);
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-col-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-lista a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.85);
  transition: color .18s;
}

.footer-col-lista a:hover {
  color: var(--verde);
}

.footer-link-destaque {
  color: rgba(0,174,77,.8) !important;
  font-weight: 600;
}

.footer-icon-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-icon-svg {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: .5;
}

.footer-col-info {
  font-size: 0.81rem;
  color: rgba(255,255,255,.75);
}

.footer-col-emergencia {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.81rem;
  color: rgba(255,255,255,.85);
  margin-top: 0.5rem;
}

.footer-col-emergencia strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--verde);
}

.footer-col-emergencia span {
  color: rgba(255,255,255,.6);
}

.footer-col-emergencia a {
  color: var(--verde);
  font-weight: 700;
  margin-top: 0.15rem;
}

.footer-endereco {
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
}

.footer-legal-texto {
  font-size: 0.79rem;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin: 0 0 0.75rem;
}

.footer-cnpj {
  font-size: 0.76rem;
  color: rgba(255,255,255,.75);
  font-family: monospace;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ---- Bottom bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* ========================================
   BLOG
   ======================================== */
.blog-header {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 5rem 0 2rem;
  background-color: var(--cinza-900);
  background-size: cover;
  background-position: center 85%;
  background-repeat: no-repeat;
  text-align: left;
  overflow: hidden;
}

.blog-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,18,16,.85) 0%, rgba(13,18,16,.55) 45%, rgba(13,18,16,.2) 80%);
  pointer-events: none;
}

.blog-header .container {
  position: relative;
  max-width: 960px;
  margin: 0 0 3rem;
  padding-left: 7rem;
  z-index: 1;
}

.blog-header h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--branco);
}

.blog-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
}

.blog-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,174,77,.1);
  border: 1px solid rgba(0,174,77,.3);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

.post-card {
  background: var(--branco);
  border-radius: 20px;
  border: 1.5px solid rgba(0,174,77,.3);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transicao);
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--verde);
  box-shadow: var(--sombra-md);
}

.post-card-data {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 0.75rem;
}

.post-card-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--verde-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  font-size: 2rem;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-body .categoria-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--verde);
  background: var(--verde-claro);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.post-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cinza-900);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.post-card-body h3 a {
  color: inherit;
}

.post-card-body h3 a:hover {
  color: var(--verde);
}

.post-card-body p {
  font-size: 0.88rem;
  color: var(--cinza-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.post-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--verde);
  color: var(--branco);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  margin-top: auto;
  transition: var(--transicao);
}

.post-card-btn:hover {
  background: var(--verde-escuro);
  color: var(--branco);
}

.blog-paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2.5rem 0 1rem;
}

.blog-paginacao .pg-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--verde);
  min-width: 20px;
  text-align: center;
}

.blog-paginacao .pg-num:hover {
  text-decoration: underline;
}

.blog-paginacao .pg-atual {
  font-weight: 800;
  border-bottom: 2px solid var(--verde);
  padding-bottom: 2px;
}

.blog-paginacao .pg-reticencias {
  color: var(--cinza-400);
}

.blog-paginacao .pg-seta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--verde);
  border-radius: 50%;
  color: var(--verde);
  font-size: 1rem;
  line-height: 1;
  transition: var(--transicao);
}

.blog-paginacao .pg-seta:hover {
  background: var(--verde);
  color: var(--branco);
}

/* Post individual */
.post-hero {
  background: var(--cinza-900);
  line-height: 0;
}

.post-hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
}

.post-single {
  padding: 3rem 0;
}

.post-single .container {
  max-width: 800px;
}

.post-single h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--cinza-400);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cinza-100);
}

.post-conteudo {
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-conteudo h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.post-conteudo h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.post-conteudo p {
  margin-bottom: 1.25rem;
}

.post-conteudo ul, .post-conteudo ol {
  margin: 1rem 0 1.25rem 1.5rem;
}

.post-conteudo li {
  margin-bottom: 0.5rem;
}

.post-conteudo img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.post-conteudo strong {
  color: var(--cinza-900);
}

/* ========================================
   ADMIN
   ======================================== */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cinza-50);
}

.admin-login-card {
  background: var(--branco);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-lg);
  width: 100%;
  max-width: 400px;
}

.admin-login-card h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.admin-login-card .subtitulo {
  text-align: center;
  color: var(--cinza-400);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.admin-login-card form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.admin-login-card input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}

.admin-login-card input:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(0,174,77,0.1);
}

/* Admin dashboard */
.admin-area {
  padding: 6rem 0 3rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.admin-header h1 {
  font-size: 1.75rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
}

.admin-table thead {
  background: var(--cinza-50);
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cinza-100);
}

.admin-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cinza-400);
}

.admin-table td a {
  font-weight: 500;
}

.admin-table .acoes {
  display: flex;
  gap: 0.5rem;
}

.admin-table .btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-danger {
  background: var(--vermelho);
  color: var(--branco);
  border: none;
  cursor: pointer;
}

.btn-danger:hover {
  background: #c82333;
}

/* Admin form */
.admin-form {
  max-width: 800px;
}

.admin-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  margin-top: 1.25rem;
  color: var(--cinza-800);
}

.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cinza-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
}

.admin-form textarea {
  min-height: 300px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(0,174,77,0.1);
}

.admin-form .checkbox-grupo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.admin-form .checkbox-grupo input[type="checkbox"] {
  width: auto;
}

/* ========================================
   ALERTAS
   ======================================== */
.alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-sucesso {
  background: var(--verde-claro);
  color: var(--verde-escuro);
  border: 1px solid rgba(0,174,77,0.2);
}

.alert-erro {
  background: #fdeaea;
  color: var(--vermelho);
  border: 1px solid rgba(220,53,69,0.2);
}

.sucesso {
  color: var(--verde);
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.05rem;
}

/* ========================================
   PÁGINAS INTERNAS
   ======================================== */
.page-header {
  padding: 7rem 0 2.5rem;
  background: var(--cinza-50);
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--cinza-400);
  font-size: 1.05rem;
}

.page-header-contato {
  background: linear-gradient(180deg, #f3f7f5 0%, #eef4f1 100%);
  border-bottom: 1px solid var(--cinza-100);
}

.page-content {
  padding: 3rem 0;
}

.page-content .container {
  max-width: 800px;
}

.page-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  align-items: start;
}

.contato-section {
  background: linear-gradient(180deg, #f7faf8 0%, #f1f6f3 45%, #eef4f1 100%);
}

.contato-coluna-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contato-info-card {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(10, 22, 17, 0.08);
  padding: 2.25rem;
}

.contato-info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  margin-top: 1.35rem;
  color: var(--cinza-900);
}

.contato-info-card h3:first-child {
  margin-top: 0;
}

.contato-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contato-icone img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contato-info-card p {
  color: var(--cinza-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.contato-info-card a {
  color: var(--verde);
  font-weight: 500;
}

.contato-info-card a:hover {
  color: var(--verde-escuro);
}

.contato-social-links a {
  display: block;
  margin-bottom: 0.1rem;
}

.contato-social-links a:last-child {
  margin-bottom: 0;
}

.contato-destaque {
  color: var(--verde);
  font-weight: 700;
}

.contato-form-wrap {
  display: flex;
  align-items: stretch;
}

.contato-form-card {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  box-shadow: 0 12px 34px rgba(10, 22, 17, 0.1);
}

.contato-form-card .form-cotacao textarea {
  min-height: 120px;
}

.secao-cta-contato {
  background: linear-gradient(135deg, #009a52 0%, #018947 100%);
}

.secao-cta-contato h2,
.secao-cta-contato p {
  color: var(--branco);
}

.btn-cta-light {
  background: var(--branco);
  color: var(--verde-escuro);
  border: 2px solid transparent;
}

.btn-cta-light:hover {
  background: #f2f7f5;
  color: var(--verde-escuro);
}

.btn-cta-whatsapp {
  background: #22cf67;
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-cta-whatsapp:hover {
  background: #19bb59;
  color: #ffffff;
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--branco);
}

.cta-email-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transicao);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: var(--branco);
}

/* ========================================
   STATUS BADGE
   ======================================== */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-verde {
  background: var(--verde-claro);
  color: var(--verde);
}

.badge-cinza {
  background: var(--cinza-100);
  color: var(--cinza-400);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 968px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(13,18,16,.75) 0%, rgba(13,18,16,.55) 40%, rgba(13,18,16,.75) 100%),
      url('../img/uploads/herobackgroundMOBILE.png') right top/cover no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: unset;
  }

  .hero > .container:not(.hero-grid) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-texto p {
    max-width: 100%;
  }

  .hero-destaques {
    max-width: 500px;
    margin: 2rem auto 0;
  }

  .form-cotacao-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secao-app .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-marcas-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .secao-app-marcas h2 {
    font-size: 1.7rem;
  }

  .app-marcas-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-info-card {
    padding: 1.5rem;
  }

  .contato-form-card {
    margin: 0 auto;
  }

  .depoimentos-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .depoimentos-arte-coluna {
    order: -1;
    justify-content: flex-start;
  }

  .depoimentos-arte-coluna::before {
    display: none;
  }

  .depoimentos-arte-img {
    width: 100%;
    max-width: 280px;
    transform: none;
    margin-bottom: 0;
    -webkit-mask-image: none;
    mask-image: none;
    mix-blend-mode: normal;
    animation: none;
  }

  .hero-direita img {
    width: 100%;
    transform: none;
  }

  .hero-arte-animada {
    animation: none;
    opacity: 1;
    filter: none;
  }

  /* Grids responsivas para imagens de arte */
  .hero-grid {
    display: block !important;
  }

  .page-content > .container {
    display: block !important;
  }
}

@media (max-width: 640px) {
  /* O body fica escuro de propósito aqui (efeito visual da home, onde as
     seções ".secao" reafirmam fundo branco abaixo). Qualquer seção nova
     fora do padrão ".secao" que não reafirmar var(--branco) explicitamente
     vai herdar esse fundo escuro e ficar ilegível no mobile — foi o que
     aconteceu com .post-single (título e texto quase pretos sobre fundo
     quase preto). Ao criar novas seções de página (fora da home), lembrar
     de adicionar o fundo branco aqui também. */
  body {
    background: #0d1210;
  }

  .secao-depoimentos {
    background: var(--branco);
  }

  .secao:not(.secao-cinza):not(.secao-escura):not(.secao-verde):not(.secao-coberturas):not(.secao-app-marcas) {
    background: var(--branco);
  }

  .post-single {
    background: var(--branco);
  }

  .dark-block .secao {
    background: transparent !important;
  }

  /* Unidades: colada na transição do counter sem vazio */
  #unidades {
    padding-top: 1.5rem;
  }

  .logo-navbar-img {
    height: 44px !important;
  }

  .nav-links {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.22s;

    position: absolute;
    top: calc(100% + 6px);
    left: 1rem;
    right: 1rem;
    background: var(--branco);
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--cinza-100);
    border-radius: var(--radius-md);
  }

  .nav-links.ativo {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    color: var(--cinza-800);
  }

  .nav-links .btn-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    margin-top: 0.25rem;
    border-radius: var(--radius-sm);
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 10;
    align-self: center;
  }

  .menu-toggle.ativo span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.ativo span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.ativo span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero-texto h1 {
    font-size: 1.2rem;
  }

  .page-header,
  .blog-header {
    padding: 5rem 0 2rem;
  }

  .blog-header {
    min-height: 480px;
  }

  .post-single {
    padding: 2rem 0;
  }

  .hero-destaques {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.5rem;
    max-width: none;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .secao-titulo h2 {
    font-size: 1.5rem;
  }

  /* Artes decorativas — desnecessárias no mobile */
  .hero-direita,
  .depoimentos-arte-coluna {
    display: none;
  }

  .depoimentos-coluna .secao-titulo {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  .digital-cards-col .secao-titulo {
    text-align: center !important;
  }

  .counter-texto-col {
    text-align: center !important;
  }

  .lp-hero-esq h1,
  .lp-hero-sub {
    text-align: center !important;
  }

  .lp-hero-esq {
    text-align: center;
  }

  .lp-checklist,
  .lp-checklist li {
    text-align: left;
  }

  .digital-cards-col .secao-titulo br.mobile-break {
    display: block;
  }

  .counter-section {
    padding: 2.5rem 0;
    background: var(--branco);
    margin-bottom: 0;
    z-index: auto;
  }

  .counter-section::after {
    display: none;
  }

  .counter-novo-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .counter-foto-col {
    order: -1;
  }

  .counter-equipe-img {
    height: auto;
  }

  .counter-item {
    padding: 1.5rem 1rem;
    background: transparent;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
    min-width: 0;
  }

  .counter-item:nth-child(2n) {
    border-right: none;
  }

  .counter-item:nth-child(3),
  .counter-item:nth-child(4) {
    border-bottom: none;
  }

  .counter-number {
    font-size: 2.5rem;
    white-space: nowrap;
    margin-bottom: 0.2rem;
    line-height: 1;
  }

  .counter-label {
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.3;
    opacity: 0.85;
  }

  /* Footer mobile: 1 coluna, separadores entre blocos */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-topo {
    padding: 1.75rem 0 1.25rem;
  }

  .footer-badges {
    gap: 0.4rem;
  }

  .footer-badge {
    font-size: 0.72rem;
  }
}

/* ========================================
   ANIMAÇÕES & TRANSIÇÕES
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroCarroEntrada {
  0% {
    opacity: 0;
    transform: translateX(92px) translateY(30px) scale(0.97);
    filter: blur(3px);
  }
  65% {
    opacity: 1;
    transform: translateX(56px) translateY(18px) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(60px) translateY(20px) scale(1);
    filter: blur(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}

/* Classes de animação reutilizáveis */
.animate-fade {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out;
}

.animate-slide-left {
  animation: slideLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideRight 0.6s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out;
}

.animate-bounce {
  animation: bounce 0.6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   CARROSSEL / CAROUSEL
   ======================================== */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--sombra-sm);
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  display: none;
  width: 100%;
  padding: 2rem;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

.carousel-item.active {
  display: block;
}

.carousel-item.prev {
  display: block;
  position: absolute;
  left: -100%;
}

.carousel-item.next {
  display: block;
  position: absolute;
  left: 100%;
}

.carousel-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transicao);
}

.carousel-dot.active {
  background: var(--verde);
  width: 30px;
  border-radius: var(--radius-full);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: var(--branco);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
  font-size: 1.25rem;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.5);
}

.carousel-btn-prev {
  left: 1rem;
}

.carousel-btn-next {
  right: 1rem;
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion {
  border: 1px solid var(--cinza-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
}

.accordion-item {
  border-bottom: 1px solid var(--cinza-100);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: var(--cinza-50);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--cinza-800);
  transition: var(--transicao);
  user-select: none;
}

.accordion-header:hover {
  background: var(--verde-claro);
  color: var(--verde-escuro);
}

.accordion-header.active {
  background: var(--verde-claro);
  color: var(--verde-escuro);
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  transition: var(--transicao);
  font-size: 1.2rem;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 1.25rem;
  background: var(--branco);
}

.accordion-body.active {
  max-height: 500px;
  padding: 1.25rem;
}

.accordion-body p {
  color: var(--cinza-600);
  line-height: 1.7;
  margin: 0;
}

/* Accordion sobre fundo escuro */
.secao-escura .accordion,
.ben-faq-inner .accordion {
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.secao-escura .accordion-item,
.ben-faq-inner .accordion-item {
  border-bottom-color: rgba(255,255,255,.08);
}

.secao-escura .accordion-header,
.ben-faq-inner .accordion-header {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
}

.secao-escura .accordion-header:hover,
.ben-faq-inner .accordion-header:hover {
  background: rgba(0,174,77,.18);
  color: var(--branco);
}

.secao-escura .accordion-header.active,
.ben-faq-inner .accordion-header.active {
  background: rgba(0,174,77,.22);
  color: var(--branco);
}

.secao-escura .accordion-body,
.ben-faq-inner .accordion-body {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
}

.secao-escura .accordion-body p,
.ben-faq-inner .accordion-body p {
  color: var(--branco);
}

/* ========================================
   COUNTER / NÚMEROS ANIMADOS
   ======================================== */

/* Novo layout 2 colunas */
.counter-novo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.counter-texto-col {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
}

.counter-texto-col .qs-eyebrow {
  color: var(--verde);
}

.counter-texto-col h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--cinza-800);
  line-height: 1.25;
  margin: 0;
}

.counter-texto-col h2 span {
  color: var(--verde);
}

.counter-texto-col p {
  color: var(--cinza-600);
  line-height: 1.7;
  margin: 0;
}

.counter-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

.counter-lista li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-sm);
  padding: 1rem 1.25rem;
  color: var(--cinza-800);
  font-weight: 600;
  line-height: 1.4;
}

.counter-lista li::before {
  content: '✓';
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.counter-foto-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-equipe-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}

.counter-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f2f7f4 0%, #e4f2ea 18%);
  padding: 4rem 0;
  color: var(--cinza-800);
  text-align: center;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(0,0,0,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 110%, rgba(0,0,0,.4) 0%, transparent 55%);
  pointer-events: none;
}

.counter-section .container {
  position: relative;
  z-index: 1;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.counter-item {
  padding: 1.5rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

.counter-section .secao-titulo {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .counter-number {
    font-size: 2rem;
  }
}

/* ========================================
   MODAL / DIÁLOGO
   ======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.3s ease-out;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--cinza-100);
}

.modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--cinza-600);
  transition: var(--transicao);
}

.modal-close:hover {
  color: var(--cinza-800);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cinza-100);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ========================================
   MODAL COTAÇÃO ONLINE
   ======================================== */
.modal-cotacao {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.82);
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.modal-cotacao.ativo {
  display: flex;
  animation: fadeIn .2s ease-out;
}

.modal-cotacao-caixa {
  background: linear-gradient(160deg, #111a15 0%, #0a0f0d 100%);
  border: 1px solid rgba(0,174,77,.2);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 2.25rem;
  position: relative;
  box-shadow:
    0 48px 120px rgba(0,0,0,.85),
    0 0 0 1px rgba(0,174,77,.07),
    inset 0 1px 0 rgba(255,255,255,.04);
  animation: slideUp .32s cubic-bezier(.22,.68,0,1.15);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Fechar */
.modal-cotacao-fechar {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s, border-color .18s;
}

.modal-cotacao-fechar svg { width: 10px; height: 10px; }

.modal-cotacao-fechar:hover {
  background: rgba(255,255,255,.14);
  color: var(--branco);
  border-color: rgba(255,255,255,.2);
}

/* Header */
.mch-topo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mch-icone {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0,174,77,.12);
  border: 1px solid rgba(0,174,77,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
}

.mch-icone svg { width: 20px; height: 20px; }

.modal-cotacao-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--verde);
  border: 1px solid rgba(0,174,77,.28);
  border-radius: 999px;
  padding: 0.22em 0.75em;
  background: rgba(0,174,77,.08);
  letter-spacing: 0.01em;
}

.modal-cotacao-header {
  margin-bottom: 1.75rem;
}

.modal-cotacao-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 0.45rem;
}

.modal-cotacao-header h2 span { color: var(--verde); }

.modal-cotacao-header p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.48);
  line-height: 1.55;
  margin: 0;
}

/* Floating label fields */
#form-modal-cotacao {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mf-field {
  position: relative;
  margin-bottom: 0.85rem;
}

.mf-input-wrap {
  position: relative;
}

.mf-icon-svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,.28);
  pointer-events: none;
  transition: color .2s;
  z-index: 1;
  flex-shrink: 0;
}

.mf-input-wrap:focus-within .mf-icon-svg { color: var(--verde); }

#form-modal-cotacao input[type="text"],
#form-modal-cotacao input[type="tel"],
#form-modal-cotacao input[type="email"] {
  width: 100%;
  padding: 1.55rem 1rem 0.6rem 2.7rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: var(--branco);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}

#form-modal-cotacao input:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(0,174,77,.12);
  background: rgba(255,255,255,.07);
}

/* Floating label */
.mf-input-wrap label:not(.mf-label-select) {
  position: absolute;
  left: 2.7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(255,255,255,.38);
  pointer-events: none;
  transition: top .18s ease, font-size .18s ease, color .18s ease, transform .18s ease;
}

.mf-input-wrap input:focus ~ label,
.mf-input-wrap input:not(:placeholder-shown) ~ label {
  top: 0.52rem;
  transform: none;
  font-size: 0.66rem;
  color: var(--verde);
  letter-spacing: 0.03em;
  font-weight: 600;
}

/* Row placa + unidade */
.mf-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: end;
}

.mf-row .mf-field { margin-bottom: 0; }

/* Label acima do custom select */
.mf-label-select {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

/* Custom select */
.mf-custom-select {
  position: relative;
}

.mf-cs-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 0.9rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: rgba(255,255,255,.38);
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, box-shadow .2s;
}

.mf-cs-btn.tem-valor { color: rgba(255,255,255,.85); }

.mf-custom-select.aberto .mf-cs-btn {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(0,174,77,.12);
}

.mf-cs-icon {
  position: static;
  transform: none;
  flex-shrink: 0;
}

.mf-cs-valor { flex: 1; }

.mf-cs-seta {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  color: rgba(255,255,255,.35);
  transition: transform .2s;
}

.mf-custom-select.aberto .mf-cs-seta { transform: rotate(180deg); }

.mf-cs-lista {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #0f1a13;
  border: 1px solid rgba(0,174,77,.2);
  border-radius: 12px;
  list-style: none;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.65);
  max-height: 220px;
  overflow-y: auto;
}

.mf-custom-select.aberto .mf-cs-lista {
  display: block;
  animation: fadeIn .15s ease-out;
}

.mf-cs-lista li {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: background .15s, color .15s;
}

.mf-cs-lista li:hover {
  background: rgba(0,174,77,.12);
  color: var(--branco);
}

.mf-cs-lista li.selecionado {
  color: var(--verde);
  background: rgba(0,174,77,.08);
}

/* Botão submit */
.modal-cotacao-btn {
  width: 100%;
  height: 58px;
  background: linear-gradient(135deg, #00d068 0%, #00a845 100%);
  border: none;
  border-radius: 13px;
  color: var(--branco);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 28px rgba(0,174,77,.38);
  transition: transform .18s, box-shadow .18s, filter .18s;
}

.modal-cotacao-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,174,77,.52);
  filter: brightness(1.07);
}

.modal-cotacao-btn:active { transform: scale(.98); }

.mcb-loader svg { display: block; }

/* Trust */
.modal-cotacao-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,.28);
  margin: 0.9rem 0 0;
  line-height: 1.5;
}

.modal-trust-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .35;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 480px) {
  .modal-cotacao-caixa { padding: 1.5rem; border-radius: 20px; }
  .mf-row { grid-template-columns: 1fr; }
  .modal-cotacao-header h2 { font-size: 1.35rem; }
}

/* ========================================
   TOAST / NOTIFICAÇÃO
   ======================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--branco);
  border-left: 4px solid var(--verde);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--sombra-lg);
  max-width: 400px;
  animation: slideUp 0.3s ease-out;
  z-index: 2001;
}

.toast.sucesso {
  border-left-color: var(--verde);
}

.toast.erro {
  border-left-color: var(--vermelho);
}

.toast.aviso {
  border-left-color: var(--amarelo);
}

.toast-titulo {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-mensagem {
  font-size: 0.9rem;
  color: var(--cinza-600);
}

/* ========================================
   BADGE / TAGS
   ======================================== */
.tag {
  display: inline-block;
  background: var(--verde-claro);
  color: var(--verde-escuro);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.tag-secondary {
  background: var(--cinza-100);
  color: var(--cinza-600);
}

/* ========================================
   TOOLTIP
   ======================================== */
.tooltip-trigger {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted var(--verde);
}

.tooltip-text {
  visibility: hidden;
  background: var(--cinza-900);
  color: var(--branco);
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.tooltip-trigger:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress {
  height: 6px;
  background: var(--cinza-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 1rem 0;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--verde) 0%, var(--verde-escuro) 100%);
  border-radius: var(--radius-full);
  animation: slideRight 0.8s ease-out;
}

/* ========================================
   LAZY LOAD PLACEHOLDER
   ======================================== */
.lazy-placeholder {
  background: linear-gradient(90deg, var(--cinza-100) 25%, var(--cinza-50) 50%, var(--cinza-100) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   SCROLL REVEAL / AOS
   ======================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   GRADIENTES & EFEITOS
   ======================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  box-shadow: 0 0 20px rgba(0,174,77,0.3);
}

.blur-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ========================================
   MOBILE MENU MELHORADO
   ======================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  background: var(--branco);
  width: 80%;
  height: 100%;
  animation: slideRight 0.3s ease-out;
  overflow-y: auto;
}

/* ========================================
   RESPONSIVO APRIMORADO
   ======================================== */
@media (max-width: 480px) {
  :root {
    --sombra-lg: 0 4px 16px rgba(0,0,0,0.1);
  }

  .container {
    padding: 0 1rem;
  }

  .secao {
    padding: 3rem 0;
  }

  .secao-titulo h2 {
    font-size: 1.5rem;
  }

  .hero-texto h1 {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 1.5rem 0 2rem;
  }

  .form-cotacao-card {
    padding: 1.5rem 1.25rem;
  }

  .page-header,
  .blog-header {
    padding: 4rem 0 1.5rem;
  }

  .blog-header {
    min-height: 380px;
  }

  .blog-header .container {
    padding-left: 1.5rem;
  }

  .page-header h1,
  .blog-header h1 {
    font-size: 1.75rem;
  }

  .blog-header p {
    font-size: 1.05rem;
  }

  .post-single {
    padding: 1.5rem 0;
  }

  .admin-area {
    padding: 4rem 0 2rem;
  }

  .secao-cta {
    padding: 2.5rem 0;
  }

  .secao-cta h2 {
    font-size: 1.5rem;
  }

  .cta-botoes {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-botoes .btn {
    width: 100%;
    justify-content: center;
  }

  .contato-grid {
    gap: 1.5rem;
  }

  .modal-content {
    width: 95%;
  }

  .toast {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }

  .footer-grid {
    gap: 1.25rem;
  }
}

/* ========================================
   HERO — PILL BADGE
   ======================================== */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.25rem;
}

.hero-pill i {
  font-style: normal;
  color: var(--verde);
  font-size: 1rem;
}

/* ========================================
   SEÇÃO ESCURA (componente reutilizável)
   ======================================== */
.secao-escura {
  position: relative;
  overflow: hidden;
  background: var(--cinza-900);
}

.secao-escura::before {
  content: '';
  position: absolute;
  inset: 0 -15% -15%;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,174,77,.3), transparent 32%),
    radial-gradient(circle at 5% 85%, rgba(0,174,77,.22), transparent 28%);
  pointer-events: none;
}

.secao-escura::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(120deg, transparent 0 70%, rgba(0,174,77,.8) 70% 71%, transparent 71%),
    linear-gradient(35deg, transparent 0 75%, rgba(255,255,255,.4) 75% 76%, transparent 76%);
  background-size: 380px 380px;
  pointer-events: none;
}

.secao-escura .container {
  position: relative;
  z-index: 1;
}

.secao-escura .secao-titulo h2 {
  color: var(--branco);
}

.secao-escura .secao-titulo h2 span {
  color: var(--verde);
}

.secao-escura .secao-titulo p {
  color: rgba(255,255,255,.72);
}

/* ========================================
   HERO — CTA BOTÕES
   ======================================== */
.hero-cta-botoes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta-botoes .btn {
  border-radius: var(--radius-full);
}

/* ========================================
   CTA INLINE (dentro de seções)
   ======================================== */
.secao-cta-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2.5rem;
  text-align: center;
}

.home-video-cta {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
}

.home-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--verde);
  color: var(--branco);
}

.home-video-btn:hover {
  background: var(--verde-escuro);
}

.home-video-btn-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  font-size: 0.75rem;
}

.modal-video {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.modal-video.ativo {
  display: flex;
  animation: fadeIn .2s ease-out;
}

.modal-video-caixa {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
  animation: slideUp .32s cubic-bezier(.22,.68,0,1.15);
}

.modal-video-player {
  display: block;
  width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  background: var(--cinza-900);
  box-shadow: 0 48px 120px rgba(0,0,0,.85);
}

.modal-video-fechar {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--branco);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}

.modal-video-fechar:hover {
  background: rgba(255,255,255,.2);
}

@media (max-width: 640px) {
  .modal-video-fechar {
    top: -2.75rem;
    right: 0;
  }
}

/* ========================================
   SEÇÃO: UNIDADES
   ======================================== */
.unidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.unidade-card {
  background: #f2f6f4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  display: flex;
  flex-direction: column;
  transition: var(--transicao);
}

.unidade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0,0,0,.38);
}

.unidade-card-header {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.unidade-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.unidade-card:hover .unidade-card-header img {
  transform: scale(1.05);
}

.unidade-header-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

/* TEMPORARIAMENTE OCULTO a pedido do cliente — reativar removendo o display:none abaixo */
.unidade-btn-whatsapp {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: var(--branco);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transicao);
  align-self: flex-start;
}

.unidade-btn-whatsapp:hover {
  background: #1fb855;
  color: var(--branco);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
}

.unidade-btn-icone {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.unidade-tag-breve {
  background: rgba(100,100,100,.15);
  color: var(--cinza-600);
}

.unidade-address small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cinza-400);
}

.unidade-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-top: -20px;
  border-radius: 20px 20px 0 0;
  background: #f2f6f4;
  position: relative;
  z-index: 1;
}

.unidade-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.unidade-tag {
  display: inline-flex;
  background: rgba(0,174,77,.12);
  color: var(--verde-escuro);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.unidade-status {
  display: inline-flex;
  background: rgba(28,36,34,.08);
  color: var(--cinza-600);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.unidade-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cinza-900);
  letter-spacing: -0.02em;
  margin: 0;
}

.unidade-address {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cinza-600);
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   SEÇÃO: COBERTURAS (novo layout)
   ======================================== */
.secao-coberturas {
  background: #f2f7f4;
}

.coberturas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.cobertura-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border: 1px solid var(--cinza-100);
  box-shadow: var(--sombra-sm);
  border-left: 4px solid transparent;
  transition: var(--transicao);
}

.cobertura-card:hover {
  border-left-color: var(--verde);
  box-shadow: var(--sombra-md);
  transform: translateY(-2px);
}

.cobertura-icone {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--branco);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.cobertura-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cobertura-texto h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cinza-900);
  margin-bottom: 0.4rem;
}

.cobertura-texto p {
  font-size: 0.85rem;
  color: var(--cinza-400);
  line-height: 1.6;
  margin: 0;
}

.coberturas-rodape {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.coberturas-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--verde-claro);
  color: var(--verde-escuro);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}

.coberturas-tag::before {
  content: '✓';
  font-weight: 800;
}

@media (max-width: 968px) {
  .coberturas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .coberturas-grid {
    grid-template-columns: 1fr;
  }
  .cobertura-card {
    padding: 1.25rem;
  }
}

/* ========================================
   DARK BLOCK — ecossistema visual único
   Unidades + Carros compartilham o mesmo fundo texturizado.
   Zero seam: um só background, um só set de pseudo-elementos.
   ======================================== */
.dark-block {
  position: relative;
  overflow: hidden;
  background: #0d1210 !important;
}

/* Radiais distribuídos ao longo de TODO o block */
.dark-block::before {
  content: '';
  position: absolute;
  inset: 0 -5% -5%;
  background:
    radial-gradient(circle at 82% 10%, rgba(0,174,77,.28), transparent 28%),
    radial-gradient(circle at 5%  42%, rgba(0,174,77,.20), transparent 26%),
    radial-gradient(circle at 14% 86%, rgba(0,174,77,.30), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(0,174,77,.20), transparent 25%);
  pointer-events: none;
}

/* Stripe geométrica contínua — sem quebra entre seções */
.dark-block::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(120deg, transparent 0 70%, rgba(0,174,77,.8) 70% 71%, transparent 71%),
    linear-gradient(35deg, transparent 0 75%, rgba(255,255,255,.4) 75% 76%, transparent 76%);
  background-size: 380px 380px;
  pointer-events: none;
}

/* Seções dentro do dark-block: fundo transparente, sem pseudo-elementos próprios */
.dark-block > .secao-escura {
  background: transparent !important;
  overflow: visible;
}

.dark-block > section {
  background: transparent !important;
}

.dark-block > .secao-escura::before,
.dark-block > .secao-escura::after {
  display: none;
}

/* ========================================
   SEÇÃO: QUAIS CARROS ATENDEMOS
   ======================================== */
.carros-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

/* Arte sangra à esquerda sem invadir a coluna do texto */
.carros-arte {
  position: relative;
  margin-left: -4vw;
  width: calc(100% + 4vw);
}

/* Glow verde atrás da arte */
.carros-arte::before {
  content: '';
  position: absolute;
  inset: -18% -8%;
  background: radial-gradient(circle at 44% 52%, rgba(0,174,77,.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.carros-arte img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,.68));
  animation: arteFlutua 6s ease-in-out infinite;
}

.carros-texto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.carros-texto h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.carros-texto h2 span {
  color: var(--verde);
}

.carros-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.carros-lista li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

.carros-lista li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--verde);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,174,77,.6);
}

.carros-obs {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

@media (max-width: 968px) {
  .carros-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .carros-lista li {
    justify-content: center;
  }
  /* Mobile: cancela o bleed, centraliza arte */
  .carros-arte {
    width: 100%;
    margin-left: 0;
    max-width: 500px;
    margin-right: auto;
  }
  .carros-arte img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .carros-texto h2 {
    font-size: 1.85rem;
  }
}

/* ========================================
   SEÇÃO: JÁ NASCEMOS DIGITAIS
   ======================================== */

/* Fundo branco puro na seção digital */
#digital {
  background: var(--branco);
}

/* Novo layout 2 colunas: arte + cards */
.digital-novo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.digital-arte-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-arte-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.digital-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.digital-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--cinza-100);
}

.digital-info-icone {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0,174,77,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.digital-info-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.digital-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cinza-900);
  margin-bottom: 0.25rem;
}

.digital-info-card p {
  font-size: 0.84rem;
  color: var(--cinza-400);
  margin: 0;
  line-height: 1.5;
}

/* Carrossel de marcas parceiras */
.marcas-carrossel {
  margin-top: 4rem;
  padding: 3rem 0 3.5rem;
  border-top: none;
  background: transparent;
  position: relative;
  overflow: visible;
}

.marcas-carrossel::before {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: -60%;
  bottom: -60%;
  background: radial-gradient(ellipse 60% 50% at center, #a8dfc0 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.marcas-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cinza-700);
  text-align: center;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.marcas-label::before,
.marcas-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cinza-200);
  max-width: 120px;
}

.marcas-viewport {
  overflow: hidden;
  width: 100%;
}

.marcas-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marcasScroll 37s linear infinite;
}

.marcas-track:hover {
  animation-play-state: paused;
}

@keyframes marcasScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marca-item {
  flex: 0 0 calc((100vw - 4rem) / 4);
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marca-item img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity .2s;
}

.marca-item img:hover {
  opacity: 1;
}

.marca-placeholder {
  width: 100%;
  height: 64px;
  background: var(--branco);
  border: 1px dashed var(--cinza-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cinza-300);
}

/* Grid antigo — mantido caso usado em outra página */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.digital-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cinza-100);
  border-left: 4px solid transparent;
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
}

.digital-card:hover {
  border-left-color: var(--verde);
  box-shadow: var(--sombra-md);
  transform: translateY(-2px);
}

.digital-icone {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--branco);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
}

.digital-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.digital-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cinza-900);
  margin-bottom: 0.4rem;
}

.digital-card p {
  font-size: 0.85rem;
  color: var(--cinza-400);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   RESPONSIVO — NOVOS COMPONENTES
   ======================================== */
@media (max-width: 968px) {
  .unidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-novo-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .digital-arte-col {
    order: -1;
  }

  .digital-arte-img {
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }

  .counter-novo-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .counter-foto-col {
    order: -1;
  }

  .counter-equipe-img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero-cta-botoes {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-botoes .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-pill {
    font-size: 0.72rem;
  }

  /* Hero home — ajustes mobile */
  .hero-texto {
    text-align: left;
  }

  .hero-esquerda {
    gap: 1rem;
  }

  #btn-cotacao-online {
    background: transparent;
    color: var(--verde);
    border: 2px solid var(--verde);
    box-shadow: none;
  }

  /* Carros atendemos — arte pousa no conteúdo */
  #carros-atendidos {
    padding-top: 0;
  }

  #carros-atendidos .carros-layout {
    gap: 0;
  }

  #carros-atendidos .carros-arte {
    width: 110%;
    margin-left: -9%;
    max-width: none;
    margin-right: 0;
    margin-bottom: -2.5rem;
  }

  #carros-atendidos .carros-texto {
    text-align: left;
    position: relative;
    z-index: 1;
  }

  #carros-atendidos .carros-lista li {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .unidades-grid {
    grid-template-columns: 1fr;
  }

  .carros-grid {
    grid-template-columns: 1fr;
  }

  .digital-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   LANDING PAGE — TRÁFEGO PAGO
   ======================================== */

.lp-page main {
  padding-top: 0;
}

/* Header */
.lp-header {
  background: var(--cinza-900);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0.6rem 0;
}

.lp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header-logo {
  height: 48px;
  width: auto;
  display: block;
}

.lp-header-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

.lp-header-cta {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
}

.lp-stars {
  color: var(--amarelo);
  letter-spacing: 1px;
}

/* Hero */
.lp-hero {
  background: linear-gradient(140deg, #00311a 0%, #00552d 55%, #006e3a 100%);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(93,222,149,0.18);
  border: 1px solid rgba(93,222,149,0.45);
  color: #5dde95;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.lp-hero h1 {
  color: var(--branco);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lp-hero h1 em {
  font-style: normal;
  color: #5dde95;
}

.lp-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.lp-hero-sub strong {
  color: var(--branco);
}

.lp-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.lp-checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #5dde95;
  color: #003d21;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.lp-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.lp-trust-item .lp-stars {
  font-size: 0.9rem;
}

/* Form da LP */
.lp-form-wrap {
  position: sticky;
  top: 1rem;
}

.lp-form-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.lp-form-urgencia {
  background: #fffbeb;
  border: 1px solid #fbbf24;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #92400e;
  text-align: center;
  margin-bottom: 1.25rem;
}

.lp-form-titulo {
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.25rem;
  color: var(--cinza-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lp-form-sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--cinza-400);
  margin-bottom: 1.25rem;
}

.lp-btn-submit {
  font-size: 1rem;
  padding: 1rem;
  letter-spacing: 0.02em;
}

.lp-form-aviso {
  text-align: center;
  font-size: 0.75rem;
  color: var(--cinza-400);
  margin-top: 0.85rem;
}

/* Números */
.lp-numeros {
  background: var(--verde);
  padding: 3rem 0;
  text-align: center;
}

.lp-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.lp-numero-item {
  color: var(--branco);
}

.lp-numero-valor {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.lp-numero-label {
  font-size: 0.88rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Benefícios */
.lp-beneficios {
  padding: 4.5rem 0;
  background: var(--cinza-50);
}

.lp-secao-titulo {
  text-align: center;
  margin-bottom: 3rem;
}

.lp-secao-titulo h2 {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.6rem;
}

.lp-secao-titulo p {
  color: var(--cinza-400);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.lp-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-beneficio {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--cinza-100);
  transition: var(--transicao);
}

.lp-beneficio:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-md);
  border-color: var(--verde-claro);
}

.lp-beneficio-icone {
  width: 52px;
  height: 52px;
  background: var(--verde-claro);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lp-beneficio-icone img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.lp-beneficio h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.lp-beneficio p {
  font-size: 0.85rem;
  color: var(--cinza-400);
  line-height: 1.6;
  margin: 0;
}

/* Depoimentos */
.lp-depoimentos {
  padding: 4.5rem 0;
  background: var(--branco);
}

.lp-depoimentos-titulo {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* CTA final */
.lp-cta-final {
  background: linear-gradient(135deg, #00311a 0%, #006e3a 100%);
  padding: 4.5rem 0;
  text-align: center;
}

.lp-cta-final h2 {
  color: var(--branco);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.lp-cta-final p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.lp-cta-botoes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--branco);
  border: 2px solid rgba(255,255,255,0.7);
}

.lp-btn-outline:hover {
  background: rgba(255,255,255,0.22);
  color: var(--branco);
}

/* Footer mínimo */
.lp-footer {
  background: var(--cinza-900);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  text-align: center;
}

.lp-footer p {
  font-size: 0.76rem;
  color: var(--cinza-400);
  margin: 0;
}

/* ========================================
   LANDING PAGE — RESPONSIVO
   ======================================== */
@media (max-width: 968px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-form-wrap {
    position: static;
  }

  .lp-hero h1 {
    font-size: 2rem;
  }

  .lp-header-trust {
    display: none;
  }

  .lp-header-cta {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }

  .lp-numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-depoimentos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-hero {
    padding: 2rem 0 3rem;
  }

  .lp-hero h1 {
    font-size: 1.65rem;
  }

  .lp-hero-sub {
    font-size: 0.95rem;
  }

  .lp-form-card {
    padding: 1.5rem 1.25rem;
  }

  .lp-numeros-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lp-numero-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .lp-numero-item:last-child {
    border-bottom: none;
  }

  .lp-beneficios-grid {
    grid-template-columns: 1fr;
  }

  .lp-secao-titulo h2,
  .lp-depoimentos-titulo {
    font-size: 1.4rem;
  }

  .lp-cta-final h2 {
    font-size: 1.5rem;
  }

  .lp-cta-botoes {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-cta-botoes .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   QUEM SOMOS — DARK TOP BLOCK
   ======================================== */

/* Compensate for fixed navbar, strip section backgrounds */
.qs-top {
  padding-top: 80px;
}

.qs-top > .secao {
  background: transparent;
  overflow: visible;
}

.qs-top > .secao::before,
.qs-top > .secao::after {
  display: none;
}

/* qs-intro: 2-col dark intro */
.qs-intro {
  padding: 4rem 0 3rem;
}

.qs-intro-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4.5rem;
  align-items: start;
}

.qs-intro-texto h1 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.qs-intro-texto h1 span {
  color: var(--verde);
}

.qs-intro-texto p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.qs-intro-texto p strong {
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.qs-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.qs-intro-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
}

.qs-intro-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: top left;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  display: block;
  position: relative;
  z-index: 1;
}

.qs-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-align: center;
}

/* qs-numeros: glass counter grid on dark */
.qs-numeros {
  padding: 0 0 8rem;
}

.qs-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.qs-num-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}

.qs-num-card:last-child {
  border-right: none;
}

.qs-num-card .counter-number-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  justify-content: center;
}

.qs-num-card .counter-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--branco);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  margin-bottom: 0;
}

.qs-num-card .counter-prefix,
.qs-num-card .counter-suffix {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--branco);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.qs-num-card .counter-label {
  font-size: 0.78rem;
  color: var(--branco);
  font-weight: 700;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

/* qs-valores: bridge — card sobe sobre o dark block */
.qs-valores {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  padding-top: calc(4.5rem + 4rem);
  border-radius: 32px 32px 0 0;
  background: var(--branco);
  box-shadow: 0 -6px 40px rgba(0,0,0,.3);
}

/* Missão & Visão — layout com forma verde + cards */
.mv-wrap {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.mv-green-shape {
  position: absolute;
  width: min(760px, 78%);
  height: 360px;
  background: var(--verde);
  border-radius: 0 80px 0 80px;
}

.mv-cards {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.mv-card {
  background: var(--branco);
  color: var(--cinza-800);
  padding: 2.75rem;
  min-height: 270px;
  border-radius: 0 86px 0 86px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.18);
}

.mv-card:nth-child(2) {
  margin-top: 110px;
}

.mv-card h3 {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  border-bottom: 5px solid var(--verde);
  line-height: 1;
  padding-bottom: 0.25rem;
}

.mv-card p {
  font-size: 0.92rem;
  color: #252525;
  font-weight: 600;
  line-height: 1.7;
}

/* Timeline horizontal de valores */
.qs-valores .beneficios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: none;
  margin: 3.5rem auto 0;
  position: relative;
}

/* Linha horizontal conectando os nós */
.qs-valores .beneficios-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0,174,77,.08),
    rgba(0,174,77,.45) 30%,
    rgba(0,174,77,.45) 70%,
    rgba(0,174,77,.08)
  );
  z-index: 0;
}

.qs-valores .beneficio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none !important;
  position: relative;
}

/* Remove linha vertical (sem pseudo-element herdado) */
.qs-valores .beneficio-card::after {
  display: none;
}

/* Nó circular — ícone maior */
.qs-valores .beneficio-card .icone {
  width: 72px;
  height: 72px;
  min-width: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--cinza-900);
  border: 1.5px solid rgba(0,174,77,.4);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(0,174,77,.07);
}

.qs-valores .beneficio-card .icone img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(600%) hue-rotate(100deg) brightness(110%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qs-valores .beneficio-card-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qs-valores .beneficio-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--cinza-900);
}

.qs-valores .beneficio-card p {
  font-size: 0.86rem;
  color: var(--cinza-600);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .qs-valores .beneficios-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .qs-valores .beneficios-grid::before {
    display: none;
  }

  .qs-valores .beneficio-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 0 2rem 0;
  }

  .qs-valores .beneficio-card .icone {
    margin: 0;
    flex-shrink: 0;
  }

  .qs-valores .beneficio-card-texto {
    align-items: flex-start;
    padding-top: 0.6rem;
  }
}

/* ========================================
   QUEM SOMOS — EYEBROW / ACCENT
   ======================================== */
.qs-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5affb0;
  margin-bottom: 0.85rem;
}

.qs-eyebrow-light {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0.85rem;
}

.qs-accent-line {
  width: 52px;
  height: 4px;
  border-radius: 20px;
  background: var(--verde);
  margin: 1.1rem 0 1.25rem;
}

.qs-equipe-grid {
  display: grid;
  grid-template-columns: .65fr 1.2fr .55fr;
  gap: 1.5rem;
  align-items: stretch;
}

.qs-equipe-texto .qs-eyebrow {
  color: var(--verde);
}

.qs-equipe-texto h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--cinza-900);
}

.qs-equipe-texto p {
  color: var(--cinza-600);
  font-size: 1rem;
  line-height: 1.7;
}

.qs-team-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-md);
  display: block;
}

.qs-team-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8f5ef 0%, #d4eddf 100%);
  border: 1px solid rgba(0,174,77,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--verde-escuro);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.qs-team-placeholder-icone {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.5;
}

.qs-equipe-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--sombra-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  border: 1px solid var(--cinza-100);
}

.qs-card-icone {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.qs-equipe-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--cinza-900);
  font-weight: 800;
}

/* ========================================
   QUEM SOMOS — REGULAMENTO
   ======================================== */
.qs-reg-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 1.75rem;
  align-items: stretch;
}

.qs-reg-card {
  background: var(--cinza-900);
  color: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--sombra-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.qs-reg-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 85% 15%, rgba(0,174,77,.3), transparent 32%),
    radial-gradient(circle at 5% 88%, rgba(0,174,77,.2), transparent 28%);
  pointer-events: none;
}

.qs-reg-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.15;
  color: var(--branco);
  position: relative;
  z-index: 1;
}

.qs-reg-card > p {
  margin-top: 1rem;
  color: rgba(255,255,255,.62);
  font-size: 0.93rem;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.qs-reg-card .btn-verde {
  position: relative;
  z-index: 1;
}

.qs-reg-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}

.qs-reg-note-icone {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: brightness(0) saturate(100%) invert(67%) sepia(20%) saturate(900%) hue-rotate(95deg) brightness(105%);
}

.qs-reg-note h3 {
  font-size: 1rem;
  color: var(--branco);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.qs-reg-note p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.qs-reg-items-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qs-reg-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
}

.qs-reg-item {
  background: var(--cinza-50);
  border: 1px solid var(--cinza-100);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.qs-reg-item:hover {
  box-shadow: var(--sombra-md);
  border-color: rgba(0,174,77,.2);
}

.qs-reg-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--verde);
  color: var(--branco);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.qs-reg-item h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--cinza-900);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.qs-reg-item p {
  font-size: 0.82rem;
  color: var(--cinza-600);
  line-height: 1.6;
}

.qs-legal-alert {
  border: 1px solid rgba(0,174,77,.22);
  background: rgba(0,174,77,.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cinza-600);
  line-height: 1.6;
}

/* Responsivo quem somos */
@media (max-width: 960px) {
  .qs-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .qs-intro-img {
    height: 280px;
  }

  .qs-numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qs-num-card {
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .qs-num-card:nth-child(2),
  .qs-num-card:nth-child(4) {
    border-right: none;
  }

  .qs-num-card:nth-child(3),
  .qs-num-card:nth-child(4) {
    border-bottom: none;
  }

  .qs-valores {
    margin-top: -3rem;
    padding-top: calc(3rem + 3rem);
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 900px) {
  .qs-equipe-grid {
    grid-template-columns: 1fr;
  }

  .qs-equipe-foto {
    order: -1;
  }

  .qs-team-img {
    height: auto;
  }

  .qs-reg-grid {
    grid-template-columns: 1fr;
  }

  .qs-reg-items {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .qs-intro {
    padding: 2.5rem 0 2rem;
  }

  .qs-numeros {
    padding-bottom: 6rem;
  }

  .qs-numeros-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qs-num-card .counter-number {
    font-size: 2rem;
  }

  .qs-reg-items {
    grid-template-columns: 1fr;
  }

  .mv-wrap {
    min-height: unset;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mv-green-shape {
    display: none;
  }

  .mv-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mv-card {
    min-height: unset;
    padding: 1.75rem;
    border-radius: 0 40px 0 40px;
  }

  .mv-card:nth-child(2) {
    margin-top: 0;
  }
}

/* ========================================
   CONTATO — ASSISTÊNCIA 24H
   ======================================== */
.contato-24h {
  padding: 5rem 0 4.5rem;
}

.c24h-layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 3rem;
  align-items: center;
}

.c24h-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,174,77,.12);
  border: 1px solid rgba(0,174,77,.25);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5affb0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
}

.c24h-badge-icone {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(76%) sepia(53%) saturate(516%) hue-rotate(95deg) brightness(106%) contrast(96%);
}

.c24h-texto h1 {
  font-size: 2.10rem;
  color: var(--branco);
  margin-bottom: 1rem;
  line-height: 1.13;
}

.c24h-texto h1 span {
  color: var(--verde);
}

.c24h-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.c24h-numero-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem 1.6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,174,77,.2);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.c24h-numero-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.38);
  font-weight: 600;
}

.c24h-numero {
  font-size: 2.1rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--verde);
  letter-spacing: -0.02em;
  line-height: 1;
}

.c24h-numero:hover {
  color: #00e070;
}

.c24h-numero-obs {
  font-size: 0.72rem;
  color: rgba(255,255,255,.28);
  font-style: italic;
}

.c24h-acoes {
  margin-bottom: 2.5rem;
}

.c24h-horarios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.c24h-horario-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.c24h-h-icone {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(60%) sepia(30%) saturate(800%) hue-rotate(95deg) brightness(100%) contrast(90%);
}

.c24h-horario-item strong {
  display: block;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.c24h-horario-item span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.c24h-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c24h-visual-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.c24h-visual-arte {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}

.c24h-visual-numero {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 6.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,174,77,.4);
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
  user-select: none;
}

.c24h-visual-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,77,.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ========================================
   CONTATO — LISTA DE UNIDADES
   ======================================== */
.cu-lista {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 1.75rem;
  pointer-events: none;
  cursor: default;
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-100);
  color: inherit;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.cu-item:last-child {
  border-bottom: none;
}

.cu-item:not(.cu-item-breve):hover {
  background: #f4faf7;
  box-shadow: inset 4px 0 0 var(--verde);
}

.cu-item-breve {
  opacity: 0.5;
  cursor: default;
}

.cu-thumb {
  width: 112px;
  height: 80px;
  min-width: 112px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.cu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.cu-item:hover .cu-thumb img {
  transform: scale(1.06);
}

.cu-item-sede {
  background: rgba(0,174,77,.04);
  border-left: 3px solid var(--verde);
  padding-left: calc(1.75rem - 3px);
}

.cu-item-sede:hover {
  background: rgba(0,174,77,.08) !important;
  box-shadow: none !important;
}

.cu-item-sede .cu-tag-sede {
  font-size: 0.72rem;
  padding: 0.25rem 0.8rem;
  background: rgba(0,174,77,.14);
}

.cu-item-sede .cu-left h3 {
  font-size: 1.2rem;
}

.cu-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}

.cu-left h3 {
  font-size: 1.05rem;
  color: var(--cinza-900);
  margin: 0;
  font-weight: 700;
}

.cu-left p {
  font-size: 0.84rem;
  color: var(--cinza-400);
  margin: 0;
  line-height: 1.45;
}

.cu-tag {
  display: inline-flex;
  align-items: center;
  background: var(--cinza-100);
  color: var(--cinza-600);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 0.15rem;
}

.cu-tag-sede {
  background: rgba(0,174,77,.1);
  color: var(--verde-escuro);
}

.cu-tag-breve {
  background: rgba(200,180,0,.1);
  color: #8a7000;
}

.cu-right {
  display: none;
}

.cu-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--verde);
  white-space: nowrap;
  transition: color 0.15s;
}

.cu-item:hover .cu-cta {
  color: var(--verde-escuro);
}

.cu-cta-breve {
  font-size: 0.82rem;
  color: var(--cinza-400);
  font-style: italic;
  white-space: nowrap;
}

.cu-seta {
  width: 20px;
  height: 20px;
  color: var(--cinza-200);
  flex-shrink: 0;
  transition: transform 0.18s ease, color 0.18s ease;
}

.cu-item:not(.cu-item-breve):hover .cu-seta {
  color: var(--verde);
  transform: translateX(3px);
}

.cu-wpp-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ========================================
   CONTATO — FORMULÁRIO LAYOUT
   ======================================== */
.contato-form-secao {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #dff0e8 0%, #c8e8d8 100%);
}

#unidades.secao {
  background: linear-gradient(to bottom, var(--branco) 0%, #dff0e8 100%);
}

.contato-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contato-form-wrap .form-cotacao-card {
  max-width: none;
  width: 100%;
  padding-top: 1.75rem;
}

.contato-form-wrap .form-cotacao textarea {
  resize: none;
}

.contato-form-info h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: #0d1f16;
  font-weight: 800;
}

.contato-form-info h2 span {
  color: var(--verde);
}

.contato-form-info > p {
  color: var(--cinza-800);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contato-form-canais {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--cinza-200);
}

.contato-form-canais li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--cinza-800);
}

.contato-form-canais a {
  color: var(--cinza-800);
  font-weight: 500;
  transition: color 0.15s;
}

.contato-form-canais a:hover {
  color: var(--verde);
}

.cfc-icone {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ========================================
   CONTATO — RESPONSIVO
   ======================================== */
@media (max-width: 900px) {
  .c24h-layout {
    grid-template-columns: 1fr;
  }

  .c24h-visual {
    display: none;
  }

  .c24h-texto h1 {
    font-size: 2.2rem;
  }

  .contato-form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .contato-24h {
    padding: 3.5rem 0 3rem;
  }

  .c24h-texto h1 {
    font-size: 1.85rem;
  }

  .c24h-numero {
    font-size: 1.65rem;
  }

  .cu-item {
    padding: 1.1rem 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .cu-right {
    align-self: flex-end;
  }

  .cu-seta {
    display: none;
  }

  .contato-form-info h2 {
    font-size: 1.55rem;
  }
}

/* ========================================
   LP — DARK TOP / HERO
   ======================================== */
.lp-top {
  padding-top: 0; /* lp-header já tem altura própria */
}

.lp-top > .secao {
  background: transparent;
  overflow: visible;
}

.lp-top > .secao::before,
.lp-top > .secao::after {
  display: none;
}

.lp-hero-new {
  padding: 4rem 0 3rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 3rem;
  align-items: center;
  min-height: 460px;
}

.lp-hero-esq {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,174,77,.12);
  border: 1px solid rgba(0,174,77,.25);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5affb0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
}

.lp-hero-esq h1 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--branco);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.lp-hero-esq h1 em {
  font-style: normal;
  color: var(--verde);
}

.lp-hero-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.lp-hero-sub strong {
  color: rgba(255,255,255,.88);
}

.lp-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

.lp-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(0,174,77,.18);
  border-radius: 50%;
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.lp-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.lp-btn-online {
  background: rgba(0,0,0,.4);
  color: var(--branco);
  border: 1px solid rgba(255,255,255,.2);
}

.lp-btn-online:hover {
  background: rgba(0,0,0,.55);
  color: var(--branco);
}

/* Car hero — lado direito */
.lp-hero-dir {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: -4rem;
  overflow: visible;
}

.lp-hero-carro {
  width: calc(100% + 4rem);
}

.lp-carro-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.65)) drop-shadow(0 8px 16px rgba(0,0,0,.4));
}

.lp-carro-overlay {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 380px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-ov-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.lp-ov-num {
  font-size: 1.7rem !important;
  font-weight: 800 !important;
  color: var(--verde) !important;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-ov-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-align: center;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.lp-ov-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.lp-ov-stars {
  font-size: 0.9rem;
  color: #f5c518;
  letter-spacing: 2px;
  line-height: 1;
}

.lp-ov-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-align: center;
  flex: 1;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-ov-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 0 0 rgba(0,174,77,.5);
  animation: lp-dot-pulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes lp-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,174,77,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(0,174,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,174,77,0); }
}

/* Trust block (legacy — mantido para compatibilidade) */
.lp-trust-bloco {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-trust-num {
  text-align: center;
}

.lp-trust-valor {
  font-size: 3rem !important;
  color: var(--verde) !important;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.lp-trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.lp-trust-sep {
  height: 1px;
  background: rgba(255,255,255,.07);
}

.lp-trust-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.lp-trust-stars span:first-child {
  color: #f5c518;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.lp-trust-stars span:last-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}

.lp-trust-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-trust-lista li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,.6);
}

.lp-tl-check {
  color: var(--verde);
  font-weight: 900;
  font-size: 0.8rem;
}

/* LP números */
.lp-numeros {
  padding: 0 0 7rem;
}

/* ========================================
   LP — UNIDADES (bridge light)
   ======================================== */
.lp-unidades {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  padding-top: calc(4rem + 4rem);
  border-radius: 32px 32px 0 0;
  background: var(--cinza-50);
  box-shadow: 0 -6px 40px rgba(0,0,0,.3);
}

.lpu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.lpu-card {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: columns;
  gap: 0.3rem;
  flex-direction: column;
}

.lpu-card-breve {
  opacity: 0.5;
}

.lpu-tag {
  display: inline-flex;
  align-items: center;
  background: var(--cinza-100);
  color: var(--cinza-600);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 0.45rem;
}

.lpu-tag-sede {
  background: rgba(0,174,77,.1);
  color: var(--verde-escuro);
}

.lpu-tag-breve {
  background: rgba(200,180,0,.1);
  color: #8a7000;
}

.lpu-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cinza-900);
  margin: 0 0 0.25rem;
}

.lpu-card p {
  font-size: 0.8rem;
  color: var(--cinza-400);
  line-height: 1.45;
  margin: 0;
}

.lpu-cta {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
}

/* LP responsivo */
@media (max-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: stretch;
  }

  .lp-hero-esq {
    display: block;
    padding-bottom: 2rem;
  }

  .lp-hero-dir {
    order: -1;
    margin-right: 0;
    justify-content: center;
    align-items: flex-end;
  }

  .lp-hero-carro {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .lp-carro-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -20px;
  }

  .lp-trust-bloco {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
  }

  .lpu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .lp-hero-esq h1 {
    font-size: 1.85rem;
  }

  .lp-ctas {
    flex-direction: column;
  }

  .lp-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .lpu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* ========================================
   LP v2 — DARK TOP (hero + faixa juntos)
   ======================================== */
.lp-dark-top {
  background: var(--cinza-900);
  position: relative;
  overflow: hidden;
}

.lp-dark-top::before {
  content: '';
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 78% 20%, rgba(0,174,77,.22), transparent 30%),
    radial-gradient(circle at 5% 85%, rgba(0,174,77,.16), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.lp-dark-top::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(120deg, transparent 0 70%, rgba(0,174,77,.9) 70% 71%, transparent 71%),
    linear-gradient(35deg, transparent 0 75%, rgba(255,255,255,.5) 75% 76%, transparent 76%);
  background-size: 360px 360px;
  pointer-events: none;
  z-index: 0;
}

.lp-dark-top > * {
  position: relative;
  z-index: 1;
}

.lp-hero-new {
  background: transparent;
  padding: 4.5rem 0 3rem;
  display: flex;
  flex-direction: column;
}

.lp-hero-new .container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp-hero-new .lp-hero-grid {
  flex: 1;
}

/* Mini card flutuante sobre o carro */
.lp-carro-mini {
  position: absolute;
  bottom: 4px;
  right: 0;
  background: rgba(10, 16, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  min-width: 210px;
}

.lp-mini-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.lp-mini-dados {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.lp-mini-num {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: var(--verde) !important;
  line-height: 1;
}

.lp-mini-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.lp-mini-vsep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.lp-mini-stars {
  font-size: 0.78rem;
  color: #f5c518;
  letter-spacing: 2px;
  line-height: 1;
}

/* ========================================
   LP v2 — FAIXA NÚMEROS (integrada no dark)
   ======================================== */
.lp-faixa-nums {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2.25rem 0 2.75rem;
}

.lp-faixa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lp-faixa-item {
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.lp-faixa-item + .lp-faixa-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(255,255,255,.07);
}

.lp-faixa-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.lp-faixa-plus {
  font-size: 0.58em;
  vertical-align: super;
}

.lp-faixa-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ========================================
   LP v2 — BENEFÍCIOS (dark green bridge)
   ======================================== */
.lp-beneficios {
  background: var(--cinza-100);
  padding: 4.5rem 0;
  box-shadow: 0 -16px 48px rgba(0,0,0,.13), 0 16px 48px rgba(0,0,0,.13);
  position: relative;
  z-index: 2;
}

.lp-ben-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-ben-header h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  color: var(--cinza-900);
  margin-bottom: 0.4rem;
}

.lp-ben-header p {
  font-size: 0.9rem;
  color: var(--cinza-400);
}

/* Card principal — standalone */
.lp-ben-featured {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.75rem 2rem;
  background: #ffffff;
  border-left: 3px solid var(--verde);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  margin-bottom: 3rem;
}

.lp-ben-feat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0,174,77,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-ben-feat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--verde);
  stroke-width: 1.6;
}

.lp-ben-feat-texto {
  flex: 1;
  min-width: 0;
}

.lp-ben-feat-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}

.lp-ben-feat-title-row h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cinza-900);
  margin: 0;
}

.lp-ben-feat-texto p {
  font-size: 0.85rem;
  color: var(--cinza-500);
  margin: 0;
  line-height: 1.6;
}

.lp-ben-feat-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--verde-escuro);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.3rem 0.7rem;
  background: rgba(0,174,77,.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,174,77,.18);
}

/* Timeline horizontal — 4 benefícios (estilo qs-valores) */
.lp-ben-valores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.lp-ben-valores::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0,174,77,.08),
    rgba(0,174,77,.45) 30%,
    rgba(0,174,77,.45) 70%,
    rgba(0,174,77,.08)
  );
  z-index: 0;
}

.lp-ben-val-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
}

.lp-ben-val-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--cinza-900);
  border: 1.5px solid rgba(0,174,77,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(0,174,77,.07);
  position: relative;
  z-index: 1;
}

.lp-ben-val-icon svg {
  width: 28px;
  height: 28px;
  color: var(--verde);
  stroke-width: 1.6;
}

.lp-ben-val-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cinza-900);
  margin: 0 0 0.35rem;
}

.lp-ben-val-item p {
  font-size: 0.8rem;
  color: var(--cinza-500);
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   LP v2 — UNIDADES (white, elevação no hover)
   ======================================== */
.lp-unidades-v2 {
  background: var(--branco);
  padding: 4.5rem 0;
}

.lp-unis-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.lp-unis-header h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  color: var(--cinza-900);
  margin-bottom: 0.4rem;
}

.lp-unis-header p {
  font-size: 0.9rem;
  color: var(--cinza-400);
}

.lp-unis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.lp-unis-grid .unidade-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.lp-uni-wpp-mobile {
  display: none;
}

.lp-unis-mais {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--cinza-400);
}

/* ========================================
   LP v2 — CTA FINAL (dark brutalista)
   ======================================== */
.lp-cta-final {
  background: var(--cinza-900);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,174,77,.07) 0%, transparent 65%);
  pointer-events: none;
}

.lp-cta-sup {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.25);
  font-weight: 600;
  margin-bottom: 1.1rem;
  position: relative;
}

.lp-cta-final h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 2.25rem;
  font-weight: 800;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ========================================
   LP v2 — RESPONSIVO
   ======================================== */
@media (max-width: 960px) {
  .lp-faixa-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0;
  }

  .lp-faixa-item + .lp-faixa-item::before {
    display: none;
  }

  .lp-faixa-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.07);
  }

  .lp-ben-feat-live {
    margin-left: 0;
  }

  .lp-ben-valores {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

  .lp-ben-valores::before {
    display: none;
  }

  .lp-unis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  /* ---- Hero v2 ---- */
  .lp-hero-new {
    padding: 0.5rem 0 1.25rem;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    min-height: unset;
    gap: 0;
  }

  .lp-hero-dir {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
    margin: 0 0 0.5rem;
  }

  .lp-hero-carro {
    width: 110%;
    margin-left: -5%;
    max-width: none;
  }

  .lp-carro-img {
    max-height: 200px;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .lp-badge-new {
    font-size: 0.62rem;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lp-hero-esq h1 {
    font-size: clamp(1.7rem, 6.5vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .lp-hero-sub {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  .lp-checklist {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .lp-checklist li {
    font-size: 0.85rem;
  }

  .lp-ctas {
    flex-direction: column;
    gap: 0.65rem;
  }

  .lp-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Números (faixa) ---- */
  .lp-faixa-nums {
    padding: 1.5rem 0 1.75rem;
  }

  /* ---- Demais ---- */
  .lp-faixa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-ben-header {
    padding: 0 0.5rem;
  }

  .lp-ben-featured {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .lp-ben-feat-icon {
    display: none;
  }

  .lp-ben-valores {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0.5rem;
    max-width: none;
  }

  .lp-ben-val-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.5rem;
    gap: 0;
  }

  .lp-ben-val-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: 0 auto 1rem;
  }

  .lp-ben-val-icon svg {
    width: 24px;
    height: 24px;
  }

  .lp-unis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .lp-unis-grid .unidade-card-header {
    height: 130px;
  }

  .lp-unis-grid .unidade-card h3 {
    font-size: 1rem;
    margin-top: 0.3rem;
    margin-bottom: 0.25rem;
  }

  .lp-unis-grid .unidade-badges {
    gap: 0.3rem;
  }

  .lp-unis-grid .unidade-tag,
  .lp-unis-grid .unidade-status {
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
  }

  .lp-unis-grid .unidade-address {
    font-size: 0.78rem;
  }

  .lp-uni-wpp-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.55rem 0.9rem;
    background: #25d366;
    color: var(--branco);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    width: 100%;
    justify-content: center;
  }

  .lp-uni-wpp-mobile .btn-wpp-icon {
    width: 15px;
    height: 15px;
  }

}

/* ========================================
   BENEFÍCIOS — DARK TOP
   ======================================== */
.ben-top {
  padding-top: 80px;
}

.ben-top > .secao {
  background: transparent;
  overflow: visible;
}

.ben-top > .secao::before,
.ben-top > .secao::after {
  display: none;
}

/* Hero */
.ben-hero {
  padding: 4rem 0 3.5rem;
}

.ben-hero-inner {
  max-width: 720px;
}

.ben-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.ben-hero-inner h1 span {
  color: var(--verde);
}

.ben-hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 1.75rem;
}

.ben-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.ben-hero-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
}

.ben-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Coberturas */
.ben-coberturas {
  padding: 2rem 0 8rem;
}

.ben-section-header {
  margin-bottom: 2.5rem;
}

.ben-section-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--cinza-800);
  margin-bottom: 0.5rem;
}

.ben-section-header p {
  color: var(--cinza-600);
  font-size: 0.95rem;
}

.ben-section-header .qs-eyebrow {
  color: var(--verde);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--verde-claro);
  border-radius: var(--radius-full);
  font-weight: 800;
}

.ben-coberturas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ben-cob-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.6rem 1.4rem;
  background: rgba(255,255,255,.025);
  transition: background 0.18s ease;
}

.ben-cob-card:hover {
  background: rgba(0,174,77,.07);
}

/* Cards de cobertura em fundo claro — padrão cobertura-card */
.ben-coberturas-claro .ben-cob-card {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-left: 4px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
}

.ben-coberturas-claro .ben-cob-card:hover {
  border-left-color: var(--verde);
  box-shadow: var(--sombra-md);
  transform: translateY(-2px);
}

.ben-coberturas-claro .ben-cob-card h3 {
  color: var(--cinza-800);
}

.ben-coberturas-claro .ben-cob-card p {
  color: var(--cinza-600);
}

.ben-coberturas-claro .ben-cob-icone img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(77%) saturate(600%) hue-rotate(115deg) brightness(95%);
}

.ben-cob-icone {
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ben-cob-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(600%) hue-rotate(100deg) brightness(110%);
}

.ben-cob-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.ben-cob-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.48);
  line-height: 1.6;
  margin: 0;
}

.ben-cob-card p strong {
  color: var(--verde);
}

/* ========================================
   BENEFÍCIOS — DIFERENCIAIS (bridge light)
   ======================================== */
.ben-diferenciais {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-top: calc(2rem + 4rem);
  padding-bottom: 2.5rem;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(to bottom, var(--branco) 0%, #dff0e8 100%);
  box-shadow: 0 -6px 40px rgba(0,0,0,.3);
}

.ben-dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ben-dif-item {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-100);
  border-left: 4px solid transparent;
  background: var(--branco);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ben-dif-item:hover {
  border-left-color: var(--verde);
  box-shadow: var(--sombra-md);
  transform: translateY(-2px);
}

.ben-dif-icone {
  width: 48px;
  height: 48px;
}

.ben-dif-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(77%) saturate(600%) hue-rotate(115deg) brightness(95%);
}

.ben-dif-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cinza-800);
  line-height: 1.25;
}

.ben-dif-item p {
  font-size: 0.88rem;
  color: var(--cinza-600);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   BENEFÍCIOS — EXTRAS
   ======================================== */

/* Verde correto nos spans de título */
.ben-diferenciais .secao-titulo h2 span,
.ben-extras .secao-titulo h2 span {
  color: var(--verde);
}


.ben-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.ben-extra-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.75rem;
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-left: 4px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
}

.ben-extra-card:hover {
  border-left-color: var(--verde);
  box-shadow: var(--sombra-md);
  transform: translateY(-2px);
}

.ben-extra-icone {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: var(--verde-claro);
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ben-extra-icone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(77%) saturate(600%) hue-rotate(115deg) brightness(95%);
}

.ben-extra-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--cinza-900);
  margin-bottom: 0.3rem;
}

.ben-extra-card p {
  font-size: 0.84rem;
  color: var(--cinza-600);
  line-height: 1.6;
  margin: 0;
}

.ben-extras-rodape {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0,174,77,.07);
  border: 1px solid rgba(0,174,77,.18);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  color: var(--cinza-600);
  font-weight: 500;
}

.ben-extras-icone-total {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ========================================
   BENEFÍCIOS — NÚMEROS DARK BLOCK
   ======================================== */
.ben-numeros-block {
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.ben-extras {
  border-radius: 0 0 32px 32px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #dff0e8 0%, #c8e8d8 100%);
  padding-bottom: calc(5rem + 2rem);
}

.ben-numeros-block .qs-numeros {
  padding: 5rem 0;
}

.ben-numeros-titulo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ben-numeros-titulo h2 {
  font-size: 1.9rem;
  color: var(--branco);
  margin-top: 0.5rem;
}

.ben-numeros-titulo h2 span {
  color: var(--verde);
}

.ben-numeros-titulo p {
  color: rgba(255,255,255,.45);
  font-size: 0.9rem;
  margin: 0.4rem 0 0;
}

.ben-faq-inner {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ========================================
   BENEFÍCIOS — RESPONSIVO
   ======================================== */
@media (max-width: 900px) {
  .ben-coberturas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ben-dif-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .ben-extras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ben-hero-inner h1 {
    font-size: 1.9rem;
  }

  .ben-coberturas-grid {
    grid-template-columns: 1fr;
  }

  .ben-diferenciais {
    margin-top: -3rem;
    padding-top: calc(3rem + 3rem);
    border-radius: 20px 20px 0 0;
  }

  .ben-hero-ctas {
    flex-direction: column;
  }

  .ben-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   CONHEÇA OS PLANOS
   ======================================== */
.planos-hero {
  background: var(--cinza-900);
  padding: 2.5rem 0;
}

.planos-hero .container {
  max-width: 1300px;
  padding: 0 1.5rem;
}

.planos-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.planos-hero-texto h1 {
  color: var(--branco);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.planos-hero-eyebrow {
  color: var(--verde);
}

.planos-hero-texto p {
  color: rgba(255,255,255,.72);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: none;
}

.planos-hero-arte {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.planos-tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.planos-tab {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transicao);
}

.planos-tab:hover {
  border-color: var(--verde);
  background: rgba(0,174,77,.15);
  color: var(--branco);
}

.planos-tab.active {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--branco);
  box-shadow: var(--sombra-verde);
}

.planos-painel {
  display: none;
}

.planos-painel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.planos-nota {
  text-align: center;
  color: var(--cinza-400);
  font-size: 0.85rem;
  max-width: 640px;
  margin: 2.5rem auto 0;
}

/* Tabela comparativa (Combustão/Utilitários e Motos) */
.planos-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-md);
  background: var(--branco);
  box-shadow: var(--sombra-sm);
  padding: 1.5rem 1.5rem 0.5rem;
}

.planos-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
}

.planos-table thead th {
  text-align: center;
  padding: 0 1rem 1.25rem;
  vertical-align: bottom;
  white-space: nowrap;
}

.planos-table thead th:first-child {
  width: 30%;
}

.planos-selo {
  display: block;
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.planos-plano-nome {
  display: inline-block;
  background: var(--cinza-900);
  color: var(--branco);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.planos-table tbody td {
  text-align: center;
  padding: 0.85rem 1rem;
  color: var(--cinza-600);
  font-size: 0.92rem;
  border-top: 1px solid var(--cinza-100);
}

.planos-table tbody td:first-child {
  text-align: left;
  color: var(--cinza-800);
}

.planos-categoria td {
  border-top: none;
  padding: 1.75rem 1rem 0.5rem;
}

.planos-categoria:first-child td {
  padding-top: 0;
}

.planos-cat-label {
  display: inline-block;
  color: var(--verde);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(0,174,77,.4);
}

/* Coluna recomendada — destacada com moldura verde */
.planos-table th:nth-child(2),
.planos-table td:nth-child(2) {
  background: rgba(0,174,77,.05);
  border-left: 2px solid var(--verde);
  border-right: 2px solid var(--verde);
}

.planos-table thead th:nth-child(2) {
  border-top: 2px solid var(--verde);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding-top: 1rem;
}

.planos-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid var(--verde);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.planos-ok,
.planos-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid transparent;
}

.planos-ok {
  border-color: var(--verde);
  color: var(--verde);
}

.planos-no {
  border-color: var(--cinza-800);
  color: var(--cinza-800);
}

/* Plano único (Elétricos/Híbridos) */
.planos-single-plano {
  text-align: center;
  margin-bottom: 2.5rem;
}

.planos-single-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.planos-single-categoria {
  margin-bottom: 1.75rem;
}

.planos-single-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-top: 1px solid var(--cinza-100);
  color: var(--cinza-700);
  font-size: 0.92rem;
}

.planos-single-categoria:first-child .planos-single-feature:first-of-type {
  border-top: none;
}

@media (max-width: 900px) {
  .planos-hero-grid {
    grid-template-columns: 1fr;
  }

  .planos-hero-img {
    order: -1;
  }

  .planos-single-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .planos-hero {
    padding: 3rem 0;
  }

  .planos-hero .container {
    padding: 0 1.25rem;
  }

  .planos-hero-texto {
    text-align: center;
  }

  .planos-hero-texto h1 {
    font-size: 1.5rem;
  }

  .planos-hero-texto p {
    font-size: 1rem;
    max-width: none;
  }

  .planos-hero-texto p br.mobile-hide {
    display: none;
  }

  .planos-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .planos-tab {
    text-align: center;
  }

  .planos-table {
    min-width: 480px;
  }
}
