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

:root {
  --amarelo: #fcdf5f;
  --verde: #1B6B3A;
  --verde-escuro: #0F4524;
  --verde-claro: #2A9158;
  --branco: #FFFDF0;
  --texto-escuro: #0A2A14;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--amarelo);
  color: var(--texto-escuro);
  font-family: 'Open Sans', Arial, sans-serif;
  overflow-x: hidden;
}

button,
a,
input {
  touch-action: manipulation;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--verde-escuro);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--amarelo);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo como imagem — altura fixa, largura automática */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  object-fit: cover;
  border-radius: 50%;
}

/* Nome ao lado da logo */
.logo-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--amarelo);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

nav a {
  color: var(--amarelo);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1.5rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
nav a:hover { opacity: 1; }

.menu-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252,223,95,0.35);
  border-radius: 6px;
  background: rgba(252,223,95,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.menu-mobile-toggle:hover {
  background: rgba(252,223,95,0.14);
  border-color: rgba(252,223,95,0.65);
}
.menu-mobile-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--amarelo);
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}
body.menu-mobile-aberto .menu-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-mobile-aberto .menu-mobile-toggle span:nth-child(2) { opacity: 0; }
body.menu-mobile-aberto .menu-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  opacity: 0;
  visibility: hidden;
  z-index: 650;
  transition: opacity 0.25s, visibility 0.25s;
}

.menu-mobile-painel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100vh;
  background: var(--verde-escuro);
  border-left: 2px solid rgba(252,223,95,0.3);
  box-shadow: -12px 0 32px rgba(0,0,0,0.28);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transform: translateX(100%);
  visibility: hidden;
  z-index: 700;
  transition: transform 0.28s ease, visibility 0.28s;
}

body.menu-mobile-aberto {
  overflow: hidden;
}
body.menu-mobile-aberto .menu-mobile-overlay {
  opacity: 1;
  visibility: visible;
}
body.menu-mobile-aberto .menu-mobile-painel {
  transform: translateX(0);
  visibility: visible;
}

.menu-mobile-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.menu-mobile-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--amarelo);
}
.menu-mobile-fechar {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(252,223,95,0.32);
  border-radius: 6px;
  background: transparent;
  color: var(--amarelo);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.menu-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.menu-mobile-links a {
  color: var(--amarelo);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid rgba(252,223,95,0.16);
}

/* ============================================================
   HERO — fullwidth no desktop, texto por cima do carrossel
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Conteúdo sobreposto à imagem — levemente mais ao centro */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 6rem;
  max-width: 680px;
  margin-left: 6%;
}

/* Degradê escuro cobrindo a esquerda para legibilidade do texto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,42,20,0.82) 0%,
    rgba(10,42,20,0.55) 45%,
    transparent 75%);
  z-index: 2;
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: var(--amarelo);
  color: var(--verde-escuro);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: normal;
  color: var(--amarelo);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: var(--amarelo);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 4px 4px 0 var(--verde-escuro);
  border: none;
  cursor: pointer;
}
.btn-wpp:hover {
  background: var(--verde-claro);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--verde-escuro);
}
.btn-wpp svg { width: 22px; height: 22px; fill: var(--amarelo); flex-shrink: 0; }

/* Carrossel ocupa o fundo inteiro */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.ativo { opacity: 1; }

/* Remove o degradê lateral que existia antes (agora está no ::before do hero) */
.hero-carousel::after { display: none; }

/* Fallback quando não há imagens: mock animado */
.camisa-mock {
  background: var(--verde);
  border-radius: 0;
  width: 100%; height: 100%;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.camisa-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amarelo);
}

.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.hero-dot.ativo {
  background: var(--amarelo);
  transform: scale(1.3);
}

/* Promo label sobre slides */
.hero-slide-promo {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amarelo);
  color: var(--verde-escuro);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}


.camisa-numero {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: var(--amarelo);
  opacity: 0.15;
  position: absolute;
  bottom: -10px; right: 10px;
  line-height: 1;
}

.camisa-estrelas { display: flex; gap: 6px; margin-bottom: 1rem; }

.estrela {
  width: 18px; height: 18px;
  background: var(--amarelo);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.camisa-logo-box {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amarelo);
  text-align: center;
  line-height: 1;
}

.camisa-logo-box small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-top: 6px;
  opacity: 0.7;
}

.floating-tag {
  position: absolute;
  top: -18px; right: -20px;
  background: var(--amarelo);
  color: var(--verde-escuro);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--verde-escuro);
  transform: rotate(5deg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   URGÊNCIA
   ============================================================ */
.section-urgencia {
  background: var(--verde-escuro);
  padding: 1.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.urgencia-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amarelo);
}

.urgencia-icon { font-size: 1.4rem; flex-shrink: 0; }

.urgencia-texto {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.urgencia-texto span {
  color: rgba(245,200,0,0.6);
  font-weight: 500;
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.urgencia-sep {
  width: 1px;
  height: 36px;
  background: rgba(245,200,0,0.2);
}

.barra-estoque-wrap {
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
  height: 8px;
  width: 120px;
  overflow: hidden;
  margin-top: 6px;
}

.barra-estoque {
  height: 100%;
  width: 35%;
  background: var(--amarelo);
  border-radius: 20px;
  animation: pulseBar 2s ease-in-out infinite;
}

@keyframes pulseBar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.section-feats {
  background: var(--verde-escuro);
  padding: 5rem 6rem;
}

.section-feats h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amarelo);
  margin-bottom: 3rem;
  text-align: center;
}

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

.feat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245, 200, 0, 0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.feat-card:hover { border-color: rgba(245,200,0,0.5); }

.feat-icon {
  width: 56px; height: 56px;
  background: var(--amarelo);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
}

.feat-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.feat-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Dots do carrossel de diferenciais (só mobile) */
.feats-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}
.feats-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.feats-dot.ativo { background: var(--amarelo); transform: scale(1.3); }

/* ============================================================
   CONFIANÇA
   ============================================================ */
.section-confianca {
  background: var(--verde-claro);
  padding: 4rem 6rem;
  border-top: 3px solid rgba(15,69,36,0.15);
}

.section-confianca h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--amarelo);
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.confianca-card {
  background: var(--verde-escuro);
  border-radius: 8px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.confianca-card:hover { 
  border-color: var(--amarelo); }

.confianca-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  margin-top: 0.8rem;
}

.confianca-card p {
  font-size: 0.82rem;
  color: rgb(255, 255, 255);
  line-height: 1.5;
}
/* Remove o fundo amarelo do círculo para o ícone amarelo aparecer */
.confianca-card .feat-icon {
  background: transparent; 
  /* ou use background: rgba(255,255,255,0.05); se quiser um círculo bem suave */
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.section-produtos {
  background: var(--branco);
  padding: 5rem 6rem;
}

.section-produtos h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--verde-escuro);
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Seção de copos — fundo levemente diferente para separar visualmente */
.section-copos {
  background: var(--amarelo);
  padding: 5rem 6rem;
}

.section-copos h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--verde-escuro);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--verde);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.produto-card {
  background: var(--verde-escuro);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--verde);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 var(--verde);
}

/* ---- Área de imagem: split frente | verso ---- */
.produto-img {
  height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Cada metade: frente (esq) e verso (dir) */
.foto-lado {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Label "Frente" / "Verso" sobre cada metade */
.foto-lado-label {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: var(--amarelo);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
}

/* Divisor vertical no meio */
.foto-divisor {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(245,200,0,0.35);
  z-index: 4;
  pointer-events: none;
}

/* Quando só tem uma foto: ocupa tudo */
.foto-lado.unica {
  grid-column: 1 / -1;
}

/* Dica de lupa — aparece sobre a capa, some no hover */
.foto-lupa-hint {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  color: var(--amarelo);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.2s;
}
.produto-img:hover .foto-lupa-hint { opacity: 0; }

/* Tag de estoque — posição absoluta sobre o container */
.produto-estoque-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: #c0392b;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 5;
}

/* ---- Preço com desconto ---- */
.produto-preco {
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 1rem;
  line-height: 1;
}
.preco-original {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  display: block;
  margin-bottom: 3px;
}
.preco-atual {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amarelo);
  display: block;
}
.preco-atual small {
  font-size: 0.78rem;
  color: rgba(245,200,0,0.55);
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  margin-left: 4px;
}

/* Tag de estoque baixo */
.produto-estoque-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: #c0392b;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 3;
}

.produto-info {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.produto-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.produto-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

/* ============================================================
   SISTEMA DE MÚLTIPLAS COMPRAS
   ============================================================ */

/* Botão "Adicionar à lista" — aparece abaixo do btn de pedir */
.btn-add-lista {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--amarelo);
  border: 1px solid rgba(245,200,0,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
  margin-top: 8px;
}
.btn-add-lista:hover {
  background: rgba(245,200,0,0.1);
  border-color: var(--amarelo);
}

/* Barra flutuante de pedido múltiplo */
.barra-pedido {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--verde-escuro);
  border-top: 3px solid var(--amarelo);
  z-index: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 0;
}
.barra-pedido.visivel { transform: translateY(0); }

.barra-pedido-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 1.5rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.barra-pedido-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.barra-contador {
  background: var(--amarelo);
  color: var(--verde-escuro);
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.barra-seta {
  color: var(--amarelo);
  font-size: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.barra-pedido.expandida .barra-seta { transform: rotate(180deg); }

/* Lista de itens selecionados */
.barra-itens {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}
.barra-pedido.expandida .barra-itens {
  max-height: 260px;
  overflow-y: auto;
  padding-bottom: 0.5rem;
}

.barra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245,200,0,0.1);
  gap: 1rem;
}
.barra-item:last-child { border-bottom: none; }

.barra-item-nome {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  line-height: 1.2;
}
.barra-item-nome span {
  color: rgba(245,200,0,0.65);
  font-weight: 500;
  font-size: 0.8rem;
}

.barra-item-remover {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.barra-item-remover:hover { color: #e74c3c; background: rgba(231,76,60,0.1); }

/* Cupom de desconto */
.cupom-area {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.barra-pedido.expandida .cupom-area {
  max-height: 120px;
  padding-bottom: 0.7rem;
}

.cupom-form {
  display: flex;
  gap: 8px;
}

.cupom-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,200,0,0.22);
  border-radius: 4px;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  padding: 11px 12px;
  outline: none;
  text-transform: uppercase;
}
.cupom-input::placeholder {
  color: rgba(255,255,255,0.45);
  text-transform: none;
}
.cupom-input:focus {
  border-color: var(--amarelo);
  box-shadow: 0 0 0 2px rgba(245,200,0,0.12);
}

.btn-aplicar-cupom {
  background: var(--amarelo);
  color: var(--verde-escuro);
  border: none;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s, filter 0.15s;
}
.btn-aplicar-cupom:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cupom-feedback {
  min-height: 18px;
  margin-top: 6px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.35;
}
.cupom-feedback.ok { color: var(--amarelo); }
.cupom-feedback.erro { color: #ff8b8b; }

/* Rodapé da barra — botão finalizar */
.barra-footer {
  padding: 10px 1.5rem 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-finalizar-lista {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--verde-claro);
  color: var(--amarelo);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--verde-escuro);
  transition: background 0.15s, transform 0.1s;
}
.btn-finalizar-lista:hover {
  background: var(--verde);
  transform: translateY(-1px);
}
.btn-finalizar-lista svg { width: 20px; height: 20px; fill: var(--amarelo); flex-shrink: 0; }

.btn-limpar-lista {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-limpar-lista:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}


/* Seleção de tamanho */
.tamanho-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tamanhos {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tamanho-btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(245,200,0,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.05em;
}
.tamanho-btn:hover {
  border-color: var(--amarelo);
  color: var(--amarelo);
}
.tamanho-btn.ativo {
  background: var(--amarelo);
  color: var(--verde-escuro);
  border-color: var(--amarelo);
}

/* Banner do brinde — aparece entre a imagem e as infos */
.brinde-banner {
  background: var(--amarelo);
  color: var(--verde-escuro);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  text-align: center;
  border-bottom: 2px solid rgba(15,69,36,0.15);
}

/* Badge de tamanhos em estoque */
.estoque-badge {
  display: inline-block;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.25);
  color: rgba(245,200,0,0.8);
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

/* Botão pedir — padrão visual existente */
.btn-pedir-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--amarelo);
  color: var(--verde-escuro);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
  margin-top: auto;
  text-decoration: none;
}
.btn-pedir-wpp:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-pedir-wpp svg { width: 18px; height: 18px; fill: var(--verde-escuro); flex-shrink: 0; }

/* Aviso de tamanho não selecionado */
.aviso-tamanho {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: -0.6rem;
  margin-bottom: 0.6rem;
  display: none;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-overlay.aberto { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-fechar {
  position: fixed;
  top: 20px; right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  z-index: 1001;
}
.lightbox-fechar:hover { opacity: 1; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-info {
  color: rgba(255,255,255,0.6);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Cursor pointer para imagens clicáveis */
.produto-img { cursor: pointer; }
.produto-img:hover::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  z-index: 10;
  pointer-events: none;
}

/* ============================================================
   SCROLL — normal em todos os dispositivos
   ============================================================ */
html { scroll-behavior: smooth; }
   /* ============================================================ */
   
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Ícones Lucide dentro de feat-icon */
.feat-icon i, .feat-icon svg {
  width: 28px; height: 28px;
  stroke: var(--verde-escuro);
  stroke-width: 2;
  fill: none;
}
/* Nos cards de confiança o fundo é escuro — ícone amarelo */
.confianca-card .feat-icon i,
.confianca-card .feat-icon svg {
  stroke: var(--amarelo);
}

/* ============================================================
   CONFIANÇA — CARROSSEL NO MOBILE
   ============================================================ */
.confianca-carousel-wrap {
  position: relative;
  /* overflow: hidden é ativado pelo JS no mobile */
}

/* No desktop: grid normal (4 colunas) */
.confianca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Dots ficam escondidos no desktop */
.confianca-carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.confianca-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.confianca-dot.ativo {
  background: var(--amarelo);
  transform: scale(1.3);
}

/* No mobile: carrossel — os cards ficam em fila horizontal dentro do wrapper com overflow hidden */
@media (max-width: 480px) {
  .confianca-carousel-wrap {
    overflow: hidden; /* apenas o wrapper corta, não a página */
  }
  .confianca-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem 0.5rem;
    scrollbar-width: none;
  }
  .confianca-grid::-webkit-scrollbar { display: none; }
  .confianca-card {
    scroll-snap-align: center;
    flex: 0 0 80vw;
    max-width: 300px;
    box-sizing: border-box;
    margin: 0;
    padding: 1.5rem 1.2rem;
  }
  .confianca-carousel-dots {
    display: flex;
  }
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.section-cta {
  background: var(--verde);
  padding: 6rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before, .section-cta::after {
  content: '★ ★ ★ ★ ★ ★';
  font-size: 1.5rem;
  color: var(--amarelo);
  opacity: 0.1;
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 1rem;
}
.section-cta::before { top: 20px; left: 2rem; }
.section-cta::after { bottom: 20px; right: 2rem; }

.section-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--amarelo);
  margin-bottom: 1rem;
  position: relative;
}

.section-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  background: var(--branco);
  padding: 5rem 6rem;
}

.section-faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--verde-escuro);
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-feats h2,
.section-confianca h2,
.section-produtos h2,
.section-copos h2,
.section-cta h2,
.section-faq h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.faq-lista {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--verde-escuro);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(245,200,0,0.15);
}

.faq-pergunta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.15s;
}
.faq-pergunta:hover { background: rgba(255,255,255,0.04); }

.faq-pergunta span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-icone {
  font-size: 1.2rem;
  color: var(--amarelo);
  transition: transform 0.2s;
  flex-shrink: 0;
  font-style: normal;
}
.faq-item.aberto .faq-icone { transform: rotate(45deg); }

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.aberto .faq-resposta { max-height: 300px; }

.faq-resposta p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--verde-escuro);
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid rgba(245,200,0,0.2);
}

footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

footer .footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--amarelo);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.btn-wpp-fixo {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wpp-fixo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-wpp-fixo svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.camisa-mock { animation: float 4s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }

/* Animações simples para uma página de vendas:
   entradas por scroll, microinterações e CTAs mais vivos. */
.animar-entrada {
  opacity: 0;
  will-change: opacity, transform;
}

.animar-entrada.animar-visivel {
  animation: entradaVenda 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--animar-delay, 0s);
}

.produto-card.animar-visivel {
  animation-name: entradaCardVenda;
}

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

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

.btn-wpp,
.btn-pedir-wpp {
  position: relative;
  overflow: hidden;
}

.btn-wpp::after,
.btn-pedir-wpp::after {
  content: '';
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 32%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: ctaShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShine {
  0%, 55% { left: -45%; opacity: 0; }
  65% { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

.produto-card:hover .foto-lado {
  transform: scale(1.04);
}

.foto-lado {
  transition: transform 0.45s ease;
}

.produto-estoque-tag,
.brinde-banner {
  animation: vendaPulse 2.6s ease-in-out infinite;
}

@keyframes vendaPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.16); }
}

.barra-pedido.item-adicionado {
  animation: barraPop 0.42s ease;
}

@keyframes barraPop {
  0% { transform: translateY(110%) scale(0.98); }
  55% { transform: translateY(-6px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .animar-entrada { opacity: 1; }
}

/* ============================================================
   RESPONSIVIDADE — MOBILE FIRST
   Prioridade: celular é o principal dispositivo dos clientes
   ============================================================ */

/* ---- TABLET (até 900px) ---- */
@media (max-width: 900px) {

  /* Hero: fullwidth no tablet, reduz altura e centraliza texto */
  .hero { min-height: 65vh; text-align: center; }
  .hero-content { padding: 2.5rem 2rem; max-width: 100%; }
  .hero::before {
    background: rgba(10,42,20,0.65);
  }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }

  /* Grids viram coluna única */
  .feats-grid { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: 1fr; }
  .confianca-grid { grid-template-columns: repeat(4, 1fr); }

  /* Paddings das seções */
  .section-feats, .section-produtos, .section-copos, .section-cta, .section-faq,
  .section-confianca, footer { padding: 3rem 1.5rem; }

  /* Urgência empilhada */
  .section-urgencia { padding: 1.2rem 1rem; gap: 1rem; flex-direction: column; text-align: center; }
  .urgencia-sep { display: none; }
  .barra-estoque-wrap { margin: 6px auto 0; }

  /* Footer centralizado */
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Nav escondida (sem menu hamburguer por ora) */
  nav { display: none; }
  .menu-mobile-toggle { display: inline-flex; }

  /* Botão WPP flutuante: só ícone em tablet */
  .btn-wpp-fixo .wpp-label { display: none; }
  .btn-wpp-fixo { border-radius: 50%; padding: 14px; }
}

/* ---- CELULAR (até 480px) — foco principal ---- */
@media (max-width: 480px) {

  /* Header mobile: logo centralizada, nome some */
  header {
    padding: 0.8rem 1rem;
    justify-content: space-between;
  }
  .logo-nome { display: none; }
  nav { display: none; }

  /* Hero mobile: banner compacto com texto por cima */
  .hero {
    min-height: 52vw;
    max-height: 72vw;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .hero::before {
    background: linear-gradient(to top,
      rgba(10,42,20,0.80) 0%,
      rgba(10,42,20,0.40) 50%,
      transparent 100%);
  }

  /* Visual permanece como fundo absoluto */
  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    order: unset;
  }

  /* Texto sobreposto, centralizado verticalmente */
  .hero-content {
    order: unset;
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 0 1rem 0 1.4rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    line-height: 1.05;
    max-width: 60%;
    white-space: normal;
    font-weight: 900;
  }
  .hero h1 em { color: var(--amarelo); font-style: normal; }
  .badge { display: none; }
  .hero p { display: none; }
  .hero .btn-wpp { display: none; }

  /* Urgência texto menor */
  .urgencia-texto { font-size: 0.85rem; }

  /* Seções com menos padding */
  .section-feats, .section-produtos, .section-copos, .section-cta, .section-faq,
  .section-confianca { padding: 2.5rem 1rem; }

  /* Títulos de seção menores */
  .section-feats h2, .section-produtos h2, .section-copos h2, .section-faq h2,
  .section-confianca h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
  .section-cta h2 { font-size: 1.8rem; }
  .section-cta p { font-size: 1rem; }

  /* Feats em carrossel no mobile — igual à confiança */
  .feats-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .feats-grid::-webkit-scrollbar { display: none; }
  .feat-card {
    scroll-snap-align: center;
    min-width: 80vw;
    max-width: 300px;
  }
  .feats-dots { display: flex; }

  /* Cards de produto otimizados para celular */
  .produto-card { box-shadow: 3px 3px 0 var(--verde); }
  .produto-img { height: 160px; }
  .produto-info { padding: 1rem; }
  .produto-info h4 { font-size: 1rem; }
  .produto-preco { font-size: 1.4rem; margin-bottom: 0.8rem; }

  /* Tamanhos com toque maior (área mínima 44px para dedos) */
  .tamanho-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    min-height: 40px;
    min-width: 44px;
  }

  /* Botão pedir ocupa largura total */
  .btn-pedir-wpp {
    font-size: 1rem;
    padding: 14px;
  }

  /* FAQ padding menor */
  .faq-pergunta { padding: 1rem; }
  .faq-pergunta span { font-size: 0.9rem; }
  .faq-resposta p { padding: 0 1rem 1rem; font-size: 0.88rem; }

  /* Esconder estrelas decorativas no mobile — sobrepõem o texto */
  .section-cta::before, .section-cta::after { display: none; }

  /* CTA botão ocupa largura total */
  .section-cta .btn-wpp {
    width: 100%;
    justify-content: center;
    font-size: 1rem !important;
    padding: 16px !important;
  }

  /* Footer simplificado */
  footer { padding: 1.5rem 1rem; gap: 0.4rem; }



  /* Botão flutuante WPP — maior e mais fácil de tocar */
  /* Lista e cupom no mobile */
  .barra-pedido-topo {
    padding: 10px 1rem;
  }

  .barra-itens {
    padding: 0 1rem;
  }
  .barra-pedido.expandida .barra-itens {
    max-height: min(32vh, 220px);
  }

  .cupom-area {
    padding: 0 1rem;
  }
  .barra-pedido.expandida .cupom-area {
    max-height: 140px;
    padding-bottom: 0.65rem;
  }

  .cupom-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 8px;
  }

  .cupom-input {
    height: 44px;
    font-size: 16px;
    padding: 0 10px;
  }

  .btn-aplicar-cupom {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .cupom-feedback {
    min-height: 16px;
    margin-top: 5px;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .barra-footer {
    padding: 8px 1rem 12px;
    gap: 8px;
    align-items: stretch;
  }

  .btn-finalizar-lista {
    min-height: 46px;
    padding: 12px 10px;
    font-size: 0.86rem;
    gap: 7px;
  }

  .btn-limpar-lista {
    min-width: 64px;
    min-height: 46px;
    padding: 12px 10px;
  }

  @media (max-width: 360px) {
    .cupom-form {
      grid-template-columns: minmax(0, 1fr) 84px;
    }
    .btn-aplicar-cupom {
      font-size: 0.78rem;
      padding: 0 8px;
    }
  }

  .btn-wpp-fixo {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  .btn-wpp-fixo svg { width: 26px; height: 26px; }
}
