/* --- Variáveis (cores e fontes) --- */
:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --color-primary: #1A252E;
  --color-primary-light: #1e293b;
  --color-accent: #D40000;
  --color-accent-hover: #aa0000;
  --color-header-orange: #D40000;
  --color-accent-light: #ffeeee;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0f172a;
  --color-border: #e2e8f0;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20bd5a;
  --max-width: 1100px;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* --- Reset e base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.25rem);
}

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

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111111;
  border-bottom: 2px solid var(--color-accent);
  transition: box-shadow 0.3s, background 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  min-height: 70px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.88; }

.logo-img {
  display: block;
  height: 62px;
  width: auto;
  object-fit: contain;
}

/* Nav Desktop */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.header-nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

/* Underline animado */
.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-link:hover {
  color: #FFFFFF;
}

.header-nav-link:hover::after {
  width: calc(100% - 1.5rem);
  left: 0.75rem;
}

/* Botão Pedido */
.btn-pedido {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-accent);
  color: #FFFFFF;
  border: none;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(212, 0, 0, 0.45);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}

/* Shimmer sweep */
.btn-pedido::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transition: left 0.45s ease;
}

.btn-pedido:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 0, 0, 0.5);
}

.btn-pedido:hover::before {
  left: 130%;
}

/* Ícone e label */
.btn-pedido svg { flex-shrink: 0; }
.btn-pedido-icon { display: none; }
.btn-pedido-label { display: inline; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.hamburger:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

/* Hamburger → X */
.hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: white;
  border: none;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
}

/* --- Hero --- */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111111;
  width: 100%;
  line-height: 0;
}

/* Imagem ocupa a largura total mantendo proporção original */
.hero-banner-img {
  display: block;
  width: 100%;
  height: auto; /* o navegador calcula a altura com base na proporção real da imagem */
}

/* Banner visível em todas as telas — mobile tem imagem própria */


/* --- Stats --- */
.stats {
  padding: 0;
  background: var(--color-accent);
  position: relative;
  overflow: hidden;
}

/* Textura de fundo sutil */
.stats-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 1px,
      transparent 1px,
      transparent 12px
    );
  pointer-events: none;
}

/* Gradiente escuro nas bordas */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.15) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  text-align: center;
}

/* Divisor vertical */
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.25);
  align-self: center;
}

.stat-card {
  padding: 2.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Ícone */
.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Linha decorativa abaixo do número */
.stat-line {
  display: block;
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  margin: 0.5rem auto 0.6rem;
}

.stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Seções comuns --- */
.section-tag {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.section-title--light {
  color: white;
}

/* --- Diferenciais --- */
.diferenciais {
  padding: 4rem 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.diferenciais-gear {
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 14rem;
  height: 14rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D40000' stroke-width='0.4' stroke-linecap='round' stroke-linejoin='round' opacity='0.2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v2m0 18v2M4.22 4.22l1.42 1.42m12.72 12.72l1.42 1.42M1 12h2m18 0h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}

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

.diferenciais-tag {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.diferenciais-title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.diferenciais-title-line1 {
  display: block;
  color: #000000;
}

.diferenciais-title-line2 {
  display: block;
  color: #CCCCCC;
}

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

.diferencial-card {
  padding: 1.75rem 1.5rem;
  background: #FFFFFF;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.diferencial-card:hover {
  box-shadow: var(--shadow-lg);
}

.diferencial-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe5e5;
  border-radius: 8px;
}

.diferencial-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
}

.diferencial-card h3 {
  margin: 0 0 0.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.diferencial-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
}

/* --- Depoimentos --- */
.depoimentos {
  padding: 4rem 0 5rem;
  background: #0a0a0a;
  color: white;
  position: relative;
  overflow: hidden;
}

.depoimentos-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at 100% 100%, rgba(212, 0, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.depoimentos-title {
  text-align: center;
  margin: 0 0 2.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.depoimentos-title-white {
  color: #FFFFFF;
}

.depoimentos-title-orange {
  color: var(--color-accent);
}

/* Slider */
.depoimentos-slider {
  overflow: hidden;
  width: 100%;
}

.depoimentos-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.depoimento-card {
  margin: 0;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  transition: border-color 0.3s;
}

.depoimento-card.active {
  border-color: rgba(212, 0, 0, 0.4);
}

/* Controles */
.depoimentos-controles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dep-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.dep-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

.dep-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dep-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.dep-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.depoimento-aspas {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.depoimento-texto {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
  font-style: italic;
}

.depoimento-stars {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.depoimento-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.depoimento-card strong {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.depoimento-card footer span {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}


/* --- História --- */
.historia {
  position: relative;
  padding: 5rem 0 6rem;
  background: #111111;
  overflow: hidden;
}

/* Fundo escuro com textura de carro (gradiente simulado) */
.historia::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212,0,0,0.06) 0%, transparent 60%),
    linear-gradient(to right, rgba(0,0,0,0.92) 35%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.historia-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Crect width='600' height='400' fill='%23181818'/%3E%3C/svg%3E")
    right center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.historia-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 2rem;
  max-width: 780px;
}

.historia-barra {
  width: 5px;
  min-height: 100%;
  background: var(--color-accent);
  border-radius: 4px;
  flex-shrink: 0;
  align-self: stretch;
}

.historia-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.historia-title {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.historia-title-white {
  display: block;
  color: #FFFFFF;
}

.historia-title-orange {
  display: block;
  color: var(--color-accent);
}

.historia-texto {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
}

.btn-historia {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-historia:hover {
  background: var(--color-accent);
  color: #FFFFFF;
}

/* --- CTA --- */
.cta {
  padding: 5rem 0 5.5rem;
  background: #FFFFFF;
  text-align: center;
  border-top: 4px solid var(--color-accent);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.cta-title-black {
  display: block;
  color: #111111;
}

.cta-title-orange {
  display: block;
  color: var(--color-accent);
}

.cta-desc {
  margin: 0 0 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  background: #111111;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  min-height: 54px;
}

.btn-cta-dark:hover {
  background: #333333;
  transform: translateY(-1px);
}

/* --- Footer --- */
.footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  align-items: start;
}

/* Coluna marca */
.footer-logo {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.875rem;
  line-height: 1;
}

.footer-logo-white {
  color: #FFFFFF;
}

.footer-logo-orange {
  color: var(--color-accent);
}

.footer-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

/* Headings das colunas */
.footer-heading {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

/* Navegação */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

/* Contato */
.footer-contato {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contato li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contato svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contato a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-contato a:hover {
  color: #FFFFFF;
}

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  flex-shrink: 0;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* --- Responsivo --- */

/* Garante nav visível no desktop mesmo com classe open */
@media (min-width: 701px) {
  .header-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .hamburger { display: none !important; }
}

/* Tablet */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-divider { display: none; }

  .stat-card {
    padding: 1.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .stat-card:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }

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

  .diferenciais-title {
    margin-bottom: 2rem;
  }

  .depoimento-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

/* Mobile */
@media (max-width: 700px) {
  .header-inner {
    padding: 0 1rem;
    min-height: 60px;
    gap: 0.75rem;
  }

  /* Esconde nav e mostra hamburger */
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 2px solid var(--color-accent);
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 99;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav-link {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
  }

  .header-nav-link:last-child {
    border-bottom: none;
  }

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

  .hamburger {
    display: flex;
  }

  .logo-img {
    height: 52px;
  }

  .btn-pedido {
    padding: 0 0.875rem;
    min-height: 40px;
    height: 40px;
    gap: 0;
    border-radius: 5px;
    justify-content: center;
  }

  .btn-pedido-label {
    display: none;
  }

  .btn-pedido-icon {
    display: block;
    width: 20px;
    height: 20px;
  }

  /* hero: oculto em mobile via regra dedicada */

  .stat-card {
    padding: 1.5rem 0.75rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-icon {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .diferenciais {
    padding: 2.5rem 0 3rem;
  }

  .diferenciais-gear {
    width: 8rem;
    height: 8rem;
    top: 0.5rem;
    right: -1rem;
    opacity: 0.5;
  }

  .diferenciais-tag {
    font-size: 0.75rem;
  }

  .diferenciais-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 1.5rem;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .diferencial-card {
    padding: 1.5rem 1.25rem;
  }

  .diferencial-card h3 {
    font-size: 0.875rem;
  }

  .diferencial-card p {
    font-size: 0.8125rem;
  }

  .depoimentos {
    padding: 2.5rem 0 4rem;
  }

  .depoimentos-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 1.5rem;
  }

  .depoimento-card {
    padding: 1.5rem 1.25rem;
    flex: 0 0 100%;
  }

  .depoimento-aspas {
    font-size: 2.25rem;
  }

  .depoimento-texto {
    font-size: 0.9375rem;
  }

  .dep-btn {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
  }

  .historia {
    padding: 3rem 0 4rem;
  }

  .historia-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .historia-texto {
    font-size: 0.9rem;
  }

  .btn-historia {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
  }

  .cta {
    padding: 3.5rem 0 4rem;
  }

  .cta-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 0.5rem;
  }

  .cta-desc {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.75rem;
  }

  .btn-cta-dark {
    padding: 1rem 2rem;
    width: 100%;
    max-width: 320px;
    min-height: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* hero oculto abaixo de 900px — regra já declarada no bloco .hero */

/* Mobile pequeno (telas muito estreitas, ex.: 320px) */
@media (max-width: 480px) {
  .header-inner {
    padding: 0.65rem 0.875rem;
    min-height: 56px;
  }

  .logo-img {
    height: 44px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

/* Touch: área mínima para botões clicáveis */
@media (hover: none) {
  .btn,
  .btn-pedido,
  .btn-primary,
  .btn-whatsapp,
  .dep-btn {
    min-height: 44px;
  }
}

/* ==============================================
   ANIMAÇÕES DE SCROLL
   ============================================== */

/* Estado inicial — invisível */
.anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.65s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay, 0s);
}

/* Fade + sobe */
.anim--fade-up {
  transform: translateY(36px);
}

/* Desliza da esquerda */
.anim--slide-left {
  transform: translateX(-40px);
}

/* Desliza da direita */
.anim--slide-right {
  transform: translateX(40px);
}

/* Zoom in suave */
.anim--zoom {
  transform: scale(0.92);
}

/* Estado visível — ativa ao entrar na viewport */
.anim.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero: dispara imediatamente ao carregar a página */
.hero .anim {
  animation-fill-mode: both;
}

/* Respeita preferência de movimento reduzido (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================== */

.wpp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Balão de mensagem */
.wpp-bubble {
  position: relative;
  background: #FFFFFF;
  color: #111111;
  border-radius: 12px 12px 0 12px;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  max-width: 230px;
  min-width: 190px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  animation: wppBubbleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transform-origin: bottom right;
}

.wpp-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid #FFFFFF;
}

.wpp-bubble--hidden {
  display: none;
}

.wpp-bubble-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}

.wpp-bubble-close:hover {
  background: #f0f0f0;
  color: #333;
}

.wpp-bubble-text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1a;
  animation: wppTextFade 0.35s ease both;
}

.wpp-bubble-text span {
  color: #25d366;
  font-weight: 700;
}

/* Botão principal */
.wpp-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  flex-shrink: 0;
}

.wpp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.wpp-icon {
  width: 30px;
  height: 30px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

/* Anéis de pulso */
.wpp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wppPulse 2.2s ease-out infinite;
}

.wpp-pulse--delay {
  animation-delay: 1.1s;
}

/* Keyframes */
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

@keyframes wppBubbleIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

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

/* Mobile */
@media (max-width: 700px) {
  .wpp-float {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .wpp-bubble {
    max-width: 190px;
    min-width: 160px;
    font-size: 0.75rem;
    padding: 0.65rem 2rem 0.65rem 0.875rem;
  }

  .wpp-btn {
    width: 52px;
    height: 52px;
  }

  .wpp-icon {
    width: 26px;
    height: 26px;
  }
}

/* Respeita movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .wpp-pulse { animation: none; }
  .wpp-bubble { animation: none; }
}

/* ==============================================
   HOVER ANIMATIONS
   ============================================== */

/* --- Cards de diferenciais --- */
.diferencial-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.diferencial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--color-accent);
}

.diferencial-card:hover .diferencial-icon-box {
  background: var(--color-accent);
  transition: background 0.25s ease;
}

.diferencial-card:hover .diferencial-icon-svg {
  color: #FFFFFF;
  transition: color 0.25s ease;
}

/* --- Cards de depoimentos --- */
.depoimento-card {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(212, 0, 0, 0.45);
}

.depoimento-card:hover .depoimento-aspas {
  transform: scale(1.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Stat cards --- */
.stat-card {
  transition: transform 0.22s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card:hover .stat-number {
  text-shadow: 0 0 24px rgba(255,255,255,0.5);
  transition: text-shadow 0.25s ease;
}

.stat-card:hover .stat-icon {
  color: #FFFFFF;
  transform: scale(1.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.stat-card:hover .stat-line {
  width: 44px;
  background: rgba(255,255,255,0.85);
  transition: width 0.3s ease, background 0.3s ease;
}

/* --- Botão primário (hero / história) --- */
.btn-primary {
  overflow: hidden;
  position: relative;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.45s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,0,0,0.45);
}

.btn-primary:hover::before { left: 130%; }

/* --- Botão história (outline) --- */
.btn-historia {
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-historia:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 0, 0, 0.3);
}

/* --- Botão CTA dark --- */
.btn-cta-dark {
  overflow: hidden;
  position: relative;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-cta-dark::before {
  content: '';
  position: absolute;
  top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.45s ease;
}

.btn-cta-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-cta-dark:hover::before { left: 130%; }

/* --- Links do footer (nav) --- */
.footer-nav a {
  position: relative;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: width 0.22s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 0.75rem;
}

.footer-nav a:hover::before {
  width: 0.5rem;
}

/* --- Itens de contato do footer --- */
.footer-contato li {
  transition: transform 0.2s ease;
}

.footer-contato li:hover {
  transform: translateX(4px);
}

.footer-contato li:hover svg {
  color: #FFFFFF;
  transition: color 0.2s ease;
}

/* --- Logo do footer --- */
.footer-logo {
  transition: opacity 0.2s ease;
}

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

/* --- Dots do carrossel --- */
.dep-dot {
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.25s ease;
}

.dep-dot:not(.active):hover {
  background: rgba(255,255,255,0.5);
  transform: scale(1.3);
}

/* --- Botões prev/next do carrossel --- */
.dep-btn {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dep-btn:hover {
  transform: scale(1.08);
}

/* --- Seção história: barra vertical --- */
.historia-barra {
  transition: background 0.3s ease;
}

/* --- Links do header nav (já tem underline, adiciona background) --- */
.header-nav-link:hover {
  background: rgba(255,255,255,0.05);
}

/* Sem hover animations em dispositivos touch (desempenho) */
@media (hover: none) {
  .diferencial-card:hover,
  .depoimento-card:hover,
  .stat-card:hover,
  .footer-nav a:hover,
  .footer-contato li:hover {
    transform: none;
  }
}

/* ─── Popup ─── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(3px);
}

.popup-overlay.popup--visible {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #111111;
  border-radius: 20px;
  padding: 0;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 0, 0, 0.25);
  overflow: hidden;
  animation: popupIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Barra vermelha no topo */
.popup-box::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--color-accent);
  width: 100%;
}

@keyframes popupIn {
  from { transform: scale(0.82) translateY(28px); opacity: 0; }
  to   { transform: scale(1) translateY(0);        opacity: 1; }
}

.popup-inner {
  padding: 2.25rem 2rem 2rem;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.popup-close:hover { background: var(--color-accent); color: #fff; }

/* Ícone animado */
.popup-icon {
  width: 68px;
  height: 68px;
  background: rgba(212, 0, 0, 0.12);
  border: 2px solid rgba(212, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-accent);
  animation: popupIconPulse 2.5s ease-in-out infinite;
}
.popup-icon svg { width: 32px; height: 32px; }

@keyframes popupIconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 0, 0, 0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(212, 0, 0, 0); }
}

.popup-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
  background: rgba(212, 0, 0, 0.1);
  border: 1px solid rgba(212, 0, 0, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.875rem;
}

.popup-title {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.popup-title span { color: var(--color-accent); }

/* Divisor decorativo */
.popup-divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.popup-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.popup-desc strong { color: #fff; font-weight: 700; }

/* Badges de destaque */
.popup-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}
.popup-badge svg { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }

.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.popup-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.popup-skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.25rem;
}
.popup-skip:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 480px) {
  .popup-inner { padding: 1.75rem 1.25rem 1.5rem; }
  .popup-title { font-size: 1.25rem; }
  .popup-badges { gap: 0.375rem; }
}
