/* ==========================================================================
   MC Engates & Carretas — Site Institucional
   Manutenção, Fabricação e Montagem de Engates, Carrocerias, Trailers
   --------------------------------------------------------------------------
   Índice:
   1. Variáveis e Reset
   2. Base / Utilitários
   3. Header / Navegação
   4. Hero (Slider)
   5. Faixa de Diferenciais
   6. Seções (cabeçalhos, grids)
   7. Serviços
   8. Produtos (Vitrine)
   9. Sobre
   10. Contato
   11. Footer
   12. Media Queries (responsividade)
   ========================================================================== */


/* ==========================================================================
   1. VARIÁVEIS E RESET
   ========================================================================== */
:root {
  /* Cores — paleta industrial-moderna */
  --grafite-900: #121417;
  --grafite-800: #1a1d21;
  --grafite-700: #24282d;
  --grafite-600: #2f343a;
  --grafite-500: #454b52;

  --amarelo: #f5a623;            /* Amarelo industrial — CTAs */
  --amarelo-escuro: #d98f14;
  --laranja: #ff6b1a;            /* Laranja hidráulico — detalhes */
  --laranja-escuro: #e05a0d;

  --branco: #ffffff;
  --off-white: #f6f8f5;          /* Fundo levemente esverdeado */
  --verde-claro: #eef3ec;
  --cinza: #6b7280;
  --cinza-claro: #a3aab2;
  --borda: #e5e8e4;

  /* Tipografia */
  --fonte-titulo: 'Montserrat', sans-serif;
  --fonte-corpo: 'Inter', sans-serif;

  /* Sombras e transições */
  --sombra-sm: 0 4px 12px rgba(18, 20, 23, 0.06);
  --sombra-md: 0 12px 32px rgba(18, 20, 23, 0.10);
  --sombra-lg: 0 24px 56px rgba(18, 20, 23, 0.16);
  --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --raio: 14px;
  --raio-lg: 20px;
  --container: 1200px;
  --altura-header: 76px;
}

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

html {
  scroll-behavior: smooth;
  /* Compensa a altura do header fixo ao navegar por âncora */
  scroll-padding-top: calc(var(--altura-header) + 16px);
}

body {
  font-family: var(--fonte-corpo);
  color: var(--grafite-800);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   2. BASE / UTILITÁRIOS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 8px;
  transition: var(--transicao);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primario {
  background: var(--amarelo);
  color: var(--grafite-900);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}

.btn-primario:hover {
  background: var(--laranja);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 26, 0.4);
}

.btn-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-borda {
  background: transparent;
  color: var(--grafite-800);
  border: 2px solid var(--grafite-700);
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-borda:hover {
  background: var(--grafite-800);
  color: var(--amarelo);
  border-color: var(--grafite-800);
}

.btn-bloco {
  width: 100%;
}

/* ==========================================================================
   3. HEADER / NAVEGAÇÃO
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 29, 33, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--altura-header);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icone {
  width: 34px;
  height: 34px;
  color: var(--amarelo);
}

.logo-texto {
  font-family: var(--fonte-titulo);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--branco);
  letter-spacing: 0.02em;
}

.logo-texto span {
  color: var(--amarelo);
}

/* Menu de links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  display: block;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cinza-claro);
  transition: var(--transicao);
}

/* Efeito hover moderno (sublinhado animado) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--amarelo);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--branco);
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

/* CTA do desktop */
.nav-cta {
  flex-shrink: 0;
}

.nav-cta-mobile {
  display: none;
}

/* Hambúrguer (escondido no desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transicao);
}

.hamburger-linha {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: var(--transicao);
}

/* Animação do hambúrguer quando ativo */
.hamburger.active .hamburger-linha:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-linha:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-linha:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   4. HERO (SLIDER)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--grafite-900);
}

.slider {
  position: relative;
  width: 100%;
  height: clamp(540px, 82vh, 760px);
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide-conteudo {
  max-width: 720px;
}

.slide-tag {
  display: inline-block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grafite-900);
  background: var(--amarelo);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.slide-titulo {
  font-family: var(--fonte-titulo);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 18px;
}

.slide-titulo em {
  color: var(--amarelo);
  font-style: normal;
}

.slide-subtitulo {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 32px;
}

.slide-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Setas */
.slider-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 20, 23, 0.5);
  color: var(--branco);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-seta:hover {
  background: var(--amarelo);
  color: var(--grafite-900);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Bolinhas */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transicao);
}

.slider-dot.active {
  background: var(--amarelo);
  width: 30px;
  border-radius: 20px;
}

/* ==========================================================================
   5. FAIXA DE DIFERENCIAIS
   ========================================================================== */
.faixa-diferenciais {
  background: var(--grafite-800);
  color: var(--branco);
  padding: 32px 0;
}

.faixa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.diferencial strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--amarelo);
  line-height: 1.2;
}

.diferencial span {
  font-size: 0.9rem;
  color: var(--cinza-claro);
}

/* ==========================================================================
   6. SEÇÕES (cabeçalhos compartilhados)
   ========================================================================== */
.secao {
  padding: 90px 0;
}

.secao-cabecalho {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.secao-tag {
  display: inline-block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--laranja-escuro);
  margin-bottom: 12px;
}

.secao-titulo {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  color: var(--grafite-900);
}

.secao-titulo em {
  color: var(--laranja-escuro);
  font-style: normal;
}

.secao-descricao {
  margin-top: 14px;
  color: var(--cinza);
  font-size: 1.05rem;
}

/* ==========================================================================
   7. SERVIÇOS
   ========================================================================== */
.servicos {
  background: var(--off-white);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.card-servico {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 34px 28px;
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
  display: flex;
  flex-direction: column;
}

/* Efeito de elevação ao passar o mouse */
.card-servico:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-lg);
  border-color: transparent;
}

.card-icone {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--verde-claro);
  color: var(--grafite-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transicao);
}

.card-servico:hover .card-icone {
  background: var(--amarelo);
  color: var(--grafite-900);
  transform: scale(1.06);
}

.card-icone svg {
  width: 30px;
  height: 30px;
}

.card-servico h3 {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--grafite-900);
  margin-bottom: 10px;
}

.card-servico p {
  color: var(--cinza);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 600;
  color: var(--laranja-escuro);
  font-size: 0.92rem;
  transition: var(--transicao);
}

.card-link:hover {
  color: var(--grafite-900);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   8. PRODUTOS (VITRINE)
   ========================================================================== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.card-produto {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
  display: flex;
  flex-direction: column;
}

.card-produto:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-md);
}

.card-produto-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--verde-claro);
}

.card-produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-produto:hover .card-produto-img img {
  transform: scale(1.08);
}

.card-produto-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--amarelo);
  color: var(--grafite-900);
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.card-produto-corpo {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-produto-corpo h3 {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--grafite-900);
}

.card-produto-corpo p {
  color: var(--cinza);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.card-produto-rodape {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-produto-preco {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  color: var(--laranja-escuro);
  font-size: 0.95rem;
}

/* ==========================================================================
   9. SOBRE
   ========================================================================== */
.sobre {
  background: var(--branco);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-imagem {
  position: relative;
}

.sobre-imagem img {
  width: 100%;
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-lg);
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.sobre-selo {
  position: absolute;
  bottom: -24px;
  right: -18px;
  background: var(--amarelo);
  color: var(--grafite-900);
  border-radius: var(--raio);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--sombra-lg);
}

.sobre-selo strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.sobre-selo span {
  font-size: 0.8rem;
  font-weight: 600;
}

.sobre-conteudo .secao-titulo {
  margin-bottom: 18px;
}

.sobre-conteudo > p {
  color: var(--cinza);
  margin-bottom: 22px;
}

.sobre-lista {
  margin-bottom: 28px;
  display: grid;
  gap: 12px;
}

.sobre-lista li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: var(--grafite-700);
}

.sobre-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  background: var(--verde-claro);
  color: var(--laranja-escuro);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   10. CONTATO
   ========================================================================== */
.contato {
  background: var(--off-white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.formulario {
  background: var(--branco);
  padding: 36px;
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-md);
  display: grid;
  gap: 18px;
}

.form-linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-campo {
  display: grid;
  gap: 6px;
}

.form-campo label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--grafite-700);
}

.form-campo input,
.form-campo select,
.form-campo textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1.5px solid var(--borda);
  border-radius: 8px;
  background: var(--off-white);
  color: var(--grafite-800);
  transition: var(--transicao);
  width: 100%;
}

.form-campo input:focus,
.form-campo select:focus,
.form-campo textarea:focus {
  outline: none;
  border-color: var(--amarelo);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}

.form-campo textarea {
  resize: vertical;
}

.contato-info {
  display: grid;
  gap: 26px;
}

.contato-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contato-item svg {
  width: 24px;
  height: 24px;
  color: var(--laranja-escuro);
  flex-shrink: 0;
  margin-top: 3px;
}

.contato-item strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  color: var(--grafite-900);
  margin-bottom: 2px;
}

.contato-item p {
  color: var(--cinza);
  font-size: 0.95rem;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
  background: var(--grafite-900);
  color: var(--cinza-claro);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.logo-footer {
  margin-bottom: 18px;
}

.footer-marca p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--grafite-700);
  color: var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
}

.footer-social a:hover {
  background: var(--amarelo);
  color: var(--grafite-900);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  color: var(--branco);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--amarelo);
  border-radius: 3px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.92rem;
  transition: var(--transicao);
}

.footer-col ul a:hover {
  color: var(--amarelo);
  padding-left: 5px;
}

/* Mapa fictício */
.footer-mapa {
  position: relative;
  height: 150px;
  border-radius: var(--raio);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--grafite-700);
  background-size: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.mapa-pino {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 16px;
  height: 16px;
  background: var(--amarelo);
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.25);
}

.footer-mapa span {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  font-size: 0.85rem;
  color: var(--cinza-claro);
}

/* Rodapé inferior */
.footer-rodape {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-rodape-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cinza);
}

/* ==========================================================================
   12. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */

/* --- Tablets (até 1024px) --- */
@media (max-width: 1024px) {
  .servicos-grid,
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .sobre-selo {
    right: 16px;
  }

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

/* --- Tablets pequenos / Mobile grande (até 768px) --- */
@media (max-width: 768px) {
  :root {
    --altura-header: 64px;
  }

  /* Menu vira hambúrguer */
  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 16px;
  }

  .nav-menu {
    position: fixed;
    top: var(--altura-header);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--grafite-900);
    padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--sombra-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.05rem;
  }

  .nav-link::after {
    display: none;
  }

  /* Slider */
  .slider {
    height: 620px;
  }

  .slider-seta {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  /* Faixa de diferenciais */
  .faixa-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }

  .secao {
    padding: 64px 0;
  }
}

/* --- Celulares pequenos (até 520px) --- */
@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }

  .servicos-grid,
  .produtos-grid {
    grid-template-columns: 1fr;
  }

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

  .form-linha {
    grid-template-columns: 1fr;
  }

  .formulario {
    padding: 26px 20px;
  }

  .slide-acoes .btn {
    width: 100%;
  }

  .slide-titulo {
    font-size: 1.9rem;
  }

  .sobre-selo {
    right: 8px;
    bottom: -20px;
    padding: 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-rodape-inner {
    justify-content: center;
    text-align: center;
  }
}

/* --- Celulares muito pequenos (320px) --- */
@media (max-width: 360px) {
  .logo-texto {
    font-size: 1.2rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .faixa-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transicao);
  cursor: pointer;
  border: none;
  /* Animação de entrada */
  animation: wppEntrada 0.6s 0.8s both cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wpp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  animation: wppPulse 2s infinite;
  z-index: -1;
}

.wpp-float svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.wpp-float:hover {
  background: #1fb855;
  transform: scale(1.08);
}

.wpp-float:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

/* Tooltip */
.wpp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--grafite-900);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transicao);
}

.wpp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--grafite-900);
  border-right: 0;
}

.wpp-float:hover .wpp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Animações */
@keyframes wppEntrada {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Ajustes mobile */
@media (max-width: 768px) {
  .wpp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .wpp-float svg {
    width: 26px;
    height: 26px;
  }
  .wpp-tooltip {
    display: none; /* Evita poluir em telas pequenas */
  }
}

@media (max-width: 360px) {
  .wpp-float {
    width: 50px;
    height: 50px;
    bottom: 14px;
    right: 14px;
  }
}
/* ==========================================================================
   PARALLAX NO HERO
   ========================================================================== */
.slide {
  /* Garante que o fundo não se repita durante o deslocamento parallax */
  background-repeat: no-repeat;
  /* Transição suave para o deslocamento do fundo */
  will-change: background-position;
}

.slide-conteudo {
  /* Leve deslocamento vertical dos textos para reforçar profundidade */
  transition: transform 0.15s linear;
  will-change: transform;
}

/* Overlay sutil que escurece mais conforme o usuário rola */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 20, 23, 0.35) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero.is-scrolled::after {
  opacity: 1;
}

/* Garante que o conteúdo do slide fique acima do overlay */
.slide-conteudo {
  position: relative;
  z-index: 2;
}