/* =========================================================
   Evolução Turbo Peças e Serviços
   CSS principal — mobile-first, leve e responsivo
   ========================================================= */

:root {
  --verde-principal: #066934;
  --verde-vivo: #45a359;
  --verde-escuro: #05351f;

  --laranja-fogo: #ec6b33;
  --laranja-vivo: #ff8a2a;

  --dourado: #efc967;
  --dourado-escuro: #bc8e3e;

  --preto: #050806;
  --grafite: #0e1410;
  --grafite-medio: #131a15;
  --cinza-metalico: #8a8f88;
  --cinza-claro: #d8d6cb;
  --branco: #ffffff;

  /* Fundos em camadas para separar as seções */
  --bg-main: #050806;
  --bg-section: #0e1410;
  --bg-soft: #111111;
  --card-bg: #151c18;
  --card-borda: rgba(69, 163, 89, 0.22);

  --header-h: 78px;

  --font-titulo: "Montserrat", "Inter", Arial, sans-serif;
  --font-texto: "Inter", "Roboto", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--preto);
}

body {
  font-family: var(--font-texto);
  background-color: var(--preto);
  color: var(--branco);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-titulo);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* ----------------------- Botões ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-titulo);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease,
    filter 0.2s ease, color 0.2s ease;
  text-align: center;
  line-height: 1.1;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: var(--verde-vivo);
  color: var(--branco);
}
.btn-whatsapp:hover {
  background: var(--verde-principal);
}

.btn-socorro {
  background: var(--laranja-fogo);
  color: var(--branco);
  box-shadow: 0 0 0 0 rgba(236, 107, 51, 0.6);
  animation: pulseAlerta 2s infinite;
}
.btn-socorro:hover {
  background: var(--laranja-vivo);
}

.btn-outline-dourado {
  background: transparent;
  color: var(--dourado);
  border-color: var(--dourado-escuro);
}
.btn-outline-dourado:hover {
  background: var(--dourado);
  color: var(--preto);
}

.btn-outline-branco {
  background: transparent;
  color: var(--branco);
  border-color: var(--cinza-metalico);
}
.btn-outline-branco:hover {
  background: var(--branco);
  color: var(--preto);
}

.btn-bloco {
  width: 100%;
}

@keyframes pulseAlerta {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 107, 51, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(236, 107, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 107, 51, 0);
  }
}

/* ----------------------- Header ----------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 3, 1, 0.95);
  border-bottom: 2px solid var(--verde-principal);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 62px;
  width: auto;
}
/* A logo oficial já contém o texto "Evolução Turbo", então o texto ao lado é redundante */
.logo-text {
  display: none;
  font-family: var(--font-titulo);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.logo-text strong {
  display: block;
  color: var(--branco);
  font-size: 1.05rem;
}
.logo-text span {
  display: block;
  color: var(--dourado);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.nav-desktop {
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-whats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--verde-vivo);
  color: var(--branco);
  padding: 9px 14px;
  border-radius: 8px;
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.header-whats svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  background: transparent;
  border: 1px solid var(--cinza-metalico);
  border-radius: 8px;
  color: var(--branco);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Menu mobile painel */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(2, 3, 1, 0.98);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 99;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-mobile.open {
  transform: translateX(0);
}
.nav-mobile a {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 14px 8px;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mobile a:hover {
  color: var(--dourado);
}

/* ----------------------- Hero / Slider ----------------------- */
.hero {
  position: relative;
  overflow: hidden;
}
.slider {
  position: relative;
  width: 100%;
}
.slide {
  display: none;
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
}
.slide.active {
  display: block;
  animation: fadeSlide 0.85s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  /* Gradiente principal: escurece a esquerda (texto) e deixa a imagem mais visível à direita */
  background: linear-gradient(
    100deg,
    rgba(5, 8, 6, 0.86) 0%,
    rgba(5, 8, 6, 0.55) 50%,
    rgba(5, 8, 6, 0.18) 100%
  );
}
/* Camada extra de profundidade no canto direito + base do banner */
.slide-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 90% at 100% 50%,
      rgba(69, 163, 89, 0.16) 0%,
      transparent 55%
    ),
    linear-gradient(to top, rgba(5, 8, 6, 0.55) 0%, transparent 35%);
  pointer-events: none;
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 16px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
}
.slide-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-titulo);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.slide-tag.tag-laranja {
  background: var(--laranja-fogo);
  color: var(--branco);
}
.slide-tag.tag-verde {
  background: var(--verde-principal);
  color: var(--branco);
}
.slide-tag.tag-dourado {
  background: var(--dourado);
  color: var(--preto);
}
.slide-content h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  text-wrap: balance;
  max-width: 600px;
}
.slide-content h2 em {
  font-style: normal;
  color: var(--dourado);
}
.slide-sub {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--verde-vivo);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.slide-text {
  color: var(--cinza-claro);
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(2, 3, 1, 0.5);
  border: 1px solid var(--cinza-metalico);
  color: var(--branco);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-arrow svg {
  width: 22px;
  height: 22px;
}
.slider-arrow.prev {
  left: 14px;
}
.slider-arrow.next {
  right: 14px;
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}
.slider-dots button.active {
  background: var(--dourado);
  width: 28px;
  border-radius: 6px;
}

/* ----------------------- Faixa de confiança ----------------------- */
 .faixa-confianca {
  /* Fundo verde escuro com leve gradiente vertical + linhas verde mais claras */
  background: linear-gradient(180deg, #0d5236 0%, #0b4a2f 55%, #093d27 100%);
  border-top: 2px solid var(--verde-vivo);
  border-bottom: 2px solid var(--verde-vivo);
  padding: 40px 0;
  }
 .faixa-confianca .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  }
 .confianca-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(69, 163, 89, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 250ms ease, box-shadow 250ms ease,
    border-color 250ms ease, background 250ms ease;
  /* Microanimação de entrada (fade + slide-up) */
  opacity: 0;
  transform: translateY(18px);
  animation: confianca-in 0.5s ease forwards;
  animation-delay: var(--delay, 0ms);
  }
 .confianca-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dourado);
  transition: transform 250ms ease;
  }
 .confianca-icone svg {
  width: 38px;
  height: 38px;
  }
 .confianca-card h3 {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--branco);
  line-height: 1.25;
  margin: 0;
  }
 .confianca-card p {
  font-size: 0.9rem;
  color: var(--cinza-claro);
  line-height: 1.45;
  margin: 0;
  max-width: 30ch;
  }
 .confianca-card:hover {
  transform: translateY(-6px);
  border-color: var(--verde-vivo);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.07);
  }
 .confianca-card:hover .confianca-icone {
  transform: scale(1.12);
  }
 @keyframes confianca-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }
 @media (prefers-reduced-motion: reduce) {
  .confianca-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  }

/* ----------------------- Seções genéricas ----------------------- */
.section {
  padding: 64px 0;
  position: relative;
}
.section-escura {
  background: var(--bg-main);
}
.section-grafite {
  background: var(--bg-section);
}
.section-soft {
  background: var(--bg-soft);
}
.section-verde {
  background: var(--verde-escuro);
}
/* Seção de Peças: fundo distinto com textura diagonal sutil e brilho dourado */
.section-pecas {
  background-color: #0a0f0c;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 11px
    ),
    radial-gradient(
      90% 60% at 50% 0%,
      rgba(239, 201, 103, 0.06) 0%,
      transparent 60%
    );
}
.section-pecas .section-head .eyebrow {
  color: var(--dourado);
}
/* Divisória sutil verde/dourada no topo de algumas seções */
.section-divisoria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(69, 163, 89, 0.45),
    rgba(239, 201, 103, 0.35),
    transparent
  );
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--laranja-vivo);
  font-family: var(--font-titulo);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: 1.8rem;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: normal;
  color: var(--dourado);
}
.section-head p {
  color: var(--cinza-claro);
  margin-top: 12px;
}

/* ----------------------- Grid de serviços ----------------------- */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, background 0.25s ease;
}
/* Faixa de destaque verde→dourado que surge no topo no hover */
.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--verde-vivo), var(--dourado));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--dourado);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(239, 201, 103, 0.4);
  background: #1b271f;
}
.card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--verde-escuro);
  border: 1px solid rgba(69, 163, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  transition: background 0.25s ease, color 0.25s ease;
}
.card:hover .card-icon {
  background: var(--verde-principal);
  color: var(--branco);
}
.card-icon svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  font-size: 1.2rem;
  color: var(--branco);
}
.card p {
  color: var(--cinza-claro);
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--verde-vivo);
  font-family: var(--font-titulo);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.card-link svg {
  width: 16px;
  height: 16px;
}
.card:hover .card-link {
  gap: 10px;
  color: var(--dourado);
}
/* Card de socorro / urgência */
.card.card-alerta {
  border: 2px solid var(--laranja-fogo);
  background: #1c130f;
  box-shadow: 0 4px 14px rgba(236, 107, 51, 0.15);
}
.card.card-alerta::before {
  background: linear-gradient(90deg, var(--laranja-fogo), var(--laranja-vivo));
  opacity: 1;
}
.card.card-alerta:hover {
  transform: translateY(-8px);
  border-color: var(--laranja-vivo);
  box-shadow: 0 18px 38px rgba(236, 107, 51, 0.35),
    0 0 0 1px rgba(236, 107, 51, 0.5);
  background: #251612;
}
.card.card-alerta .card-icon {
  background: #3a1d10;
  color: var(--laranja-vivo);
  border-color: rgba(236, 107, 51, 0.3);
}
.card.card-alerta:hover .card-icon {
  background: var(--laranja-fogo);
  color: var(--branco);
}
.card.card-alerta .card-link,
.card.card-alerta:hover .card-link {
  color: var(--laranja-vivo);
}
.card-selo {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--laranja-fogo);
  color: var(--branco);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ----------------------- Banner de socorro (CTA) ----------------------- */
.cta-socorro {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 64px 0;
}
.cta-socorro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 3, 1, 0.94) 0%,
    rgba(58, 29, 16, 0.78) 100%
  );
}
.cta-socorro .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-socorro .eyebrow {
  color: var(--laranja-vivo);
  font-family: var(--font-titulo);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.cta-socorro h2 {
  font-size: 2rem;
  margin: 12px 0 8px;
  text-wrap: balance;
}
.cta-socorro h2 em {
  font-style: normal;
  color: var(--laranja-vivo);
}
.cta-socorro .sub {
  font-family: var(--font-titulo);
  color: var(--branco);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.cta-socorro p {
  color: var(--cinza-claro);
  max-width: 640px;
  margin: 0 auto 26px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.aviso {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--cinza-metalico);
  font-style: italic;
}

/* ----------------------- Por que escolher ----------------------- */
.lista-beneficios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.beneficio {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(5, 8, 6, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.beneficio:hover {
  transform: translateY(-3px);
  border-color: var(--verde-vivo);
  background: rgba(5, 8, 6, 0.65);
}
.beneficio svg {
  width: 26px;
  height: 26px;
  color: var(--dourado);
  flex-shrink: 0;
}
.beneficio span {
  color: var(--cinza-claro);
  line-height: 1.5;
}

/* ----------------------- Sobre ----------------------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.sobre-img {
  position: relative;
}
.sobre-img img {
  border-radius: 16px;
  border: 2px solid var(--verde-principal);
  width: 100%;
  height: 100%;
  max-height: 460px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  display: block;
  /* Ajustes sutis: mantém as cores reais da oficina */
  filter: brightness(1.04) contrast(1.05) saturate(1.02);
}
.sobre-texto h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}
.sobre-texto h2 em {
  font-style: normal;
  color: var(--dourado);
}
.sobre-texto p {
  color: var(--cinza-claro);
  margin-bottom: 16px;
}

/* ----------------------- Localização ----------------------- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.local-info {
  display: flex;
  flex-direction: column;
}
.local-info h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.local-info h2 em {
  font-style: normal;
  color: var(--dourado);
}
.local-intro {
  color: var(--cinza-claro);
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Cards informativos de endereço e telefones */
.local-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.local-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-borda);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.local-card:hover {
  border-color: var(--verde-vivo);
  transform: translateY(-2px);
}
.local-card-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--verde-escuro);
  border: 1px solid rgba(69, 163, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
}
.local-card-ico svg {
  width: 22px;
  height: 22px;
}
.local-card-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.local-card-txt strong {
  font-family: var(--font-titulo);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--verde-vivo);
}
.local-card-txt span {
  color: #e9e7df;
  font-size: 0.95rem;
  line-height: 1.45;
}
.local-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  width: 100%;
  }
  /* Botões de CTA da seção Localização */
  .btn-local {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-family: var(--font-titulo);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease,
    color 250ms ease, border-color 250ms ease;
  }
  .btn-local svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  }
  .btn-local:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  }
  /* 1. Google Maps -> verde da marca */
  .btn-local-maps {
  background: var(--verde-principal);
  color: var(--branco);
  }
  .btn-local-maps:hover {
  background: var(--verde-vivo);
  }
  /* 2. WhatsApp -> laranja da identidade (conversão) */
  .btn-local-whats {
  background: var(--laranja-fogo);
  color: var(--branco);
  }
  .btn-local-whats:hover {
  background: var(--laranja-vivo);
  }
  /* 3. Ligar -> grafite com borda verde e texto branco */
  .btn-local-call {
  background: var(--grafite-medio);
  color: var(--branco);
  border-color: var(--verde-principal);
  }
  .btn-local-call:hover {
  background: var(--grafite);
  border-color: var(--verde-vivo);
  }
/* Coluna do mapa: selo + iframe */
.local-mapa {
  display: flex;
  flex-direction: column;
}
.mapa-selo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--verde-escuro);
  border: 1px solid rgba(69, 163, 89, 0.4);
  border-radius: 12px 12px 0 0;
  padding: 12px 16px;
}
.mapa-selo svg {
  width: 26px;
  height: 26px;
  color: var(--dourado);
  flex-shrink: 0;
}
.mapa-selo strong {
  display: block;
  font-family: var(--font-titulo);
  color: var(--branco);
  font-size: 0.98rem;
  line-height: 1.2;
}
.mapa-selo span {
  display: block;
  color: #d8e3d3;
  font-size: 0.85rem;
  line-height: 1.4;
}
.map-wrap {
  flex-grow: 1;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  border: 2px solid var(--verde-principal);
  border-top: none;
  min-height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 500px;
  border: 0;
  display: block;
}

/* ----------------------- Galeria ----------------------- */
.galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.galeria-item {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  padding: 0;
  border: 2px solid var(--card-borda);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card-bg);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, opacity 0.5s ease;
}
  .galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  }
.galeria-item:hover {
  border-color: var(--verde-vivo);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(239, 201, 103, 0.35);
}
.galeria-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.08);
}
/* Última foto ocupa a linha inteira no mobile quando há nº ímpar visível */
.galeria-item:nth-child(5) {
  grid-column: 1 / -1;
}
/* Transição suave ao trocar o conjunto de imagens */
.galeria.trocando .galeria-item {
  opacity: 0;
}
.galeria-rodape {
  text-align: center;
  margin-top: 28px;
}

/* ----------------------- Lightbox / Modal ----------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 5, 3, 0.92);
  animation: lightboxIn 0.25s ease;
}
.lightbox[hidden] {
  display: none;
}
@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lightbox-conteudo {
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-conteudo img {
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid var(--verde-principal);
}
.lightbox-conteudo figcaption {
  color: var(--cinza-claro);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}
.lightbox-fechar {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-fechar:hover {
  background: var(--laranja-fogo);
}
.lightbox-fechar svg {
  width: 24px;
  height: 24px;
}
.lightbox-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-seta:hover {
  background: var(--verde-principal);
}
.lightbox-seta svg {
  width: 26px;
  height: 26px;
}
.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}

/* ----------------------- Central de Dúvidas ----------------------- */
.central {
  max-width: 900px;
  margin: 0 auto;
}
.central-busca {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid #262b27;
  border-radius: 12px;
  padding: 12px 16px;
}
.central-busca:focus-within {
  border-color: var(--dourado);
}
.central-busca svg {
  width: 20px;
  height: 20px;
  color: var(--dourado);
  flex-shrink: 0;
}
.central-busca input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--branco);
  font-family: var(--font-texto);
  font-size: 1rem;
}
.central-busca input::placeholder {
  color: #8a928b;
}
.central-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.central-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid #262b27;
  border-radius: 10px;
  color: #c9cfc9;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 12px;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}
.central-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.central-tab:hover {
  border-color: var(--verde-principal);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.central-tab.active {
  background: var(--verde-principal);
  border-color: var(--verde-principal);
  color: var(--branco);
}
.central-tab.active svg {
  color: var(--branco);
}
@media (min-width: 640px) {
  .central-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  .faixa-confianca .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .central-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.central-painel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.central-painel[hidden] {
  display: none;
}
.central-item {
  background: var(--card-bg);
  border: 1px solid #262b27;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.central-item.open {
  border-color: var(--dourado);
}
.central-item.oculto {
  display: none;
}
.central-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--branco);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  line-height: 1.35;
}
.central-chev {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.central-chev::before,
.central-chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--dourado);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.central-chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.central-item.open .central-chev::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.central-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.central-item.open .central-a {
  max-height: 600px;
}
.central-a-in {
  padding: 0 20px 18px;
}
.central-a-in p {
  color: #e9e7df;
  line-height: 1.6;
}
.termo {
  background: transparent;
  color: var(--dourado);
  font-weight: 600;
  padding: 0;
}
.central-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: #25d366;
  color: #05140a;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.central-cta svg {
  width: 18px;
  height: 18px;
}
.central-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.central-vazio {
  text-align: center;
  color: #c9cfc9;
  padding: 24px;
  background: var(--card-bg);
  border: 1px dashed #262b27;
  border-radius: 12px;
}
.central-vazio[hidden] {
  display: none;
}

/* ----------------------- Footer ----------------------- */
.footer {
  background: #050706;
  border-top: 3px solid var(--verde-principal);
  padding: 48px 0 110px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-col h4 {
  color: var(--dourado);
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo a {
  display: inline-block;
  cursor: pointer;
  transition: transform 250ms ease, opacity 250ms ease, filter 250ms ease;
}
.footer-logo a:hover,
.footer-logo a:focus-visible {
  transform: scale(1.03);
  opacity: 0.92;
  filter: brightness(1.1);
}
.footer-logo img {
  display: block;
  height: auto;
  width: auto;
  max-width: 240px;
  max-height: 64px;
}
.footer-brand p {
  color: #dcdad0;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col ul li {
  color: #dcdad0;
  font-size: 0.95rem;
}
.footer-col ul li a:hover {
  color: var(--verde-vivo);
}
.footer-contato a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contato svg {
  width: 18px;
  height: 18px;
  color: var(--verde-vivo);
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid #1a1d1b;
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
}
/* Créditos do rodapé: tudo branco, centralizado, em uma linha no desktop */
.footer-credits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 0.85rem;
}
.footer-credits a {
  color: inherit;
  text-decoration: none;
  transition: opacity 250ms ease;
}
.footer-credits a:hover,
.footer-credits a:focus {
  opacity: 0.8;
  text-decoration: underline;
}
.footer-sep {
  opacity: 0.6;
}
/* Mobile: separador some e o crédito do dev quebra para a segunda linha */
@media (max-width: 600px) {
  .footer-credits {
    gap: 2px;
  }
  .footer-sep {
    display: none;
  }
  .footer-credits-main,
  .footer-credits-dev {
    flex: 0 0 100%;
    text-align: center;
  }
}

/* ----------------------- Barra fixa mobile ----------------------- */
.barra-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--grafite);
  border-top: 2px solid var(--dourado-escuro);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
}
.barra-mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 4px;
  font-size: 0.68rem;
  font-family: var(--font-titulo);
  text-transform: uppercase;
  color: var(--branco);
  border-right: 1px solid #000;
}
.barra-mobile a:last-child {
  border-right: none;
}
.barra-mobile svg {
  width: 22px;
  height: 22px;
}
.barra-mobile .bm-whats {
  color: var(--verde-vivo);
}
.barra-mobile .bm-socorro {
  color: var(--laranja-vivo);
}
.barra-mobile .bm-ligar {
  color: var(--dourado);
}

/* ----------------------- Página interna hero ----------------------- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  border-bottom: 3px solid var(--verde-principal);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(2, 3, 1, 0.92) 0%,
    rgba(5, 53, 31, 0.7) 100%
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  color: var(--laranja-vivo);
  font-family: var(--font-titulo);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.page-hero h1 {
  font-size: 2.2rem;
  margin: 12px 0;
  text-wrap: balance;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--dourado);
}
.page-hero p {
  color: var(--cinza-claro);
  max-width: 640px;
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--cinza-metalico);
  margin-bottom: 14px;
}
.breadcrumb a:hover {
  color: var(--verde-vivo);
}

/* Conteúdo de texto rico em páginas internas */
.prose h2 {
  font-size: 1.6rem;
  color: var(--branco);
  margin: 28px 0 14px;
}
.prose h2 em {
  font-style: normal;
  color: var(--dourado);
}
.prose h3 {
  font-size: 1.2rem;
  color: var(--verde-vivo);
  margin: 22px 0 10px;
}
.prose p {
  color: var(--cinza-claro);
  margin-bottom: 16px;
}
.prose ul.check {
  margin: 0 0 18px;
}
.prose ul.check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--cinza-claro);
}
.prose ul.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--verde-vivo);
  border-radius: 4px;
}

.bloco-cta {
  background: var(--verde-escuro);
  border: 1px solid var(--verde-principal);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  margin: 32px 0;
}
.bloco-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--branco);
}
.bloco-cta .cta-btns {
  margin-top: 0;
}

/* Formulário de contato (mailto/WhatsApp) */
.form-contato {
  background: var(--card-bg);
  border: 1px solid #262b27;
  border-radius: 12px;
  padding: 24px;
}
.form-contato label {
  display: block;
  font-family: var(--font-titulo);
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 14px 0 6px;
  color: var(--cinza-claro);
}
.form-contato input,
.form-contato textarea {
  width: 100%;
  background: var(--preto);
  border: 1px solid #2c322d;
  border-radius: 8px;
  padding: 12px;
  color: var(--branco);
  font-family: var(--font-texto);
  font-size: 1rem;
}
.form-contato input:focus,
.form-contato textarea:focus {
  outline: none;
  border-color: var(--verde-vivo);
}
.form-contato button {
  margin-top: 20px;
}

/* ----------------------- Responsivo ----------------------- */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .logo img {
    height: 64px;
  }
  .slide-content h2 {
    font-size: 2.9rem;
  }
  .slide {
    min-height: 600px;
  }
  .slide-content {
    min-height: 600px;
    padding: 64px 32px 80px;
  }
  .slider-arrow {
    display: flex;
  }
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .lista-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
  }
  .local-grid {
    /* Mapa reduzido ~15%: mais peso ao texto, melhor equilíbrio */
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  .local-btns {
  flex-direction: row;
  flex-wrap: nowrap;
  }
  .local-btns .btn-local {
  flex: 1;
  width: auto;
  font-size: 16px;
  }
  .section-head h2 {
    font-size: 2.2rem;
  }
  .page-hero h1 {
    font-size: 2.6rem;
  }
  /* Galeria: 5 fotos verticais lado a lado no desktop */
  .galeria {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .galeria-item {
    height: 400px;
  }
  .galeria-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (min-width: 1100px) {
  .slide-content h2 {
    font-size: 3.25rem;
  }
  .section-head h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .faixa-confianca .container {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .nav-desktop a {
    font-family: var(--font-titulo);
    text-transform: uppercase;
    font-size: 0.92rem;
    color: var(--cinza-claro);
    transition: color 0.2s ease;
  }
  .nav-desktop a:hover {
    color: var(--dourado);
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none;
  }
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .barra-mobile {
    display: none;
  }
  .footer {
    padding-bottom: 48px;
  }
}

/* ----------------------- Página de contato ----------------------- */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.contato-info h2,
.contato-form-wrap h2 {
  font-family: var(--font-titulo);
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--branco);
}
.contato-info h2 em,
.contato-form-wrap h2 em {
  color: var(--dourado);
  font-style: normal;
}
.contato-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.contato-lista li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ci-icone {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--verde-principal);
  color: var(--branco);
}
.ci-icone svg {
  width: 22px;
  height: 22px;
}
.contato-lista strong {
  display: block;
  font-family: var(--font-titulo);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--cinza-claro);
}
.contato-lista a,
.contato-lista span {
  color: var(--branco);
  font-size: 1.02rem;
}
.contato-lista a:hover {
  color: var(--dourado);
}
.contato-form-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px;
}
.form-aviso {
  color: var(--cinza-claro);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.campo label {
  font-family: var(--font-titulo);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--cinza-claro);
}
.campo input,
.campo select,
.campo textarea {
  font-family: var(--font-texto);
  font-size: 1rem;
  color: var(--branco);
  background: var(--grafite);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
}
.campo textarea {
  resize: vertical;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--verde-vivo);
}
.campo input::placeholder,
.campo textarea::placeholder {
  color: var(--cinza-metalico);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.section-mapa .mapa-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
}
.section-mapa iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

@media (min-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}
