@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&display=swap');

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

:root {
  --verde-escuro: #006400;
  --verde-medio: #007A00;
  --verde-neon: #00FF41;
  --amarelo-ouro: #FFD700;
  --amarelo-escuro: #F5A800;
  --branco: #FFFFFF;
  --preto: #0A0A0A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--preto);
  color: var(--branco);
  overflow-x: hidden;
}

/* ====== POPUP ====== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.4s ease;
}
.popup-overlay.hidden { display: none; }

.popup-box {
  background: linear-gradient(135deg, var(--verde-escuro), #003d00);
  border: 3px solid var(--amarelo-ouro);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 420px; width: 90%;
  text-align: center; position: relative;
  animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 40px rgba(255,215,0,0.4);
}
.popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  color: var(--amarelo-ouro); font-size: 1.8rem;
  cursor: pointer; line-height: 1; font-weight: bold;
}
.popup-emoji { font-size: 5rem; margin-bottom: 1rem; display: block; animation: bounce 1s ease infinite; }
.popup-title { font-family: 'Anton', sans-serif; font-size: 1.8rem; color: var(--amarelo-ouro); letter-spacing: 1px; margin-bottom: 0.5rem; }
.popup-subtitle { font-size: 1.1rem; color: var(--verde-neon); font-weight: 700; margin-bottom: 0.3rem; }
.popup-text { font-size: 0.95rem; color: var(--branco); margin-bottom: 1.5rem; line-height: 1.6; }
.popup-btn {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--amarelo-escuro));
  color: var(--preto); border: none;
  padding: 0.9rem 2.5rem; border-radius: 50px;
  font-family: 'Anton', sans-serif; font-size: 1.1rem;
  letter-spacing: 1px; cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}
.popup-btn:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(255,215,0,0.6); }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 200;
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; cursor: pointer;
}
.whatsapp-label {
  background: var(--branco); color: #128C7E;
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 0.8rem; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
.whatsapp-icon {
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: whatsappPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: var(--branco);
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 1px; padding: 0.85rem 1.8rem;
  border-radius: 50px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.btn-whatsapp svg { flex-shrink: 0; }

/* ====== TRUST BAR ====== */
.trust-bar {
  background: linear-gradient(90deg, var(--amarelo-ouro), var(--amarelo-escuro), var(--amarelo-ouro));
  padding: 0.7rem 1rem; overflow: hidden; position: relative;
}
.trust-bar-inner {
  display: flex; gap: 3rem;
  animation: marquee 18s linear infinite;
  white-space: nowrap; width: max-content;
}
.trust-bar span {
  font-family: 'Anton', sans-serif; font-size: 0.95rem;
  letter-spacing: 2px; color: var(--preto);
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(0,122,0,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(255,215,0,0.15) 0%, transparent 50%),
    linear-gradient(180deg, #001400 0%, #002800 40%, #001a00 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 4rem 1rem 2rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0,255,65,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,215,0,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.confetti-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.confetti-piece { position: absolute; opacity: 0; animation: confettiFall linear infinite; }

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block; background: var(--verde-neon);
  color: var(--preto); font-family: 'Anton', sans-serif;
  font-size: 0.85rem; letter-spacing: 3px;
  padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.2rem;
  animation: pulseGlow 2s ease-in-out infinite;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95; letter-spacing: 2px; color: var(--branco);
  text-shadow: 2px 2px 0 var(--verde-escuro), 4px 4px 0 rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}
.hero-title .gold {
  color: var(--amarelo-ouro); display: block;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  text-shadow: 2px 2px 0 #8B6914, 4px 4px 0 rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 3px; color: var(--verde-neon);
  margin-bottom: 0.6rem;
  text-shadow: 0 0 20px rgba(0,255,65,0.5);
}
.hero-emotional {
  font-size: 1.1rem; font-weight: 700;
  color: var(--amarelo-ouro); margin-bottom: 1rem; letter-spacing: 0.5px;
}
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 2rem; max-width: 500px;
}
.hero-trust { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700; color: var(--amarelo-ouro);
}
.hero-price-box {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--amarelo-ouro); border-radius: 16px;
  padding: 1.5rem; margin-bottom: 1.5rem; backdrop-filter: blur(10px);
}
.hero-price-label { font-size: 0.85rem; letter-spacing: 2px; color: var(--verde-neon); font-weight: 700; text-transform: uppercase; }
.hero-price { font-family: 'Anton', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--amarelo-ouro); letter-spacing: 1px; line-height: 1; }
.hero-price-delivery { font-size: 0.9rem; color: var(--branco); font-weight: 600; margin-top: 0.3rem; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.2);
  animation: floatImg 4s ease-in-out infinite;
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--amarelo-ouro) 0%, var(--amarelo-escuro) 100%);
  color: var(--preto); font-family: 'Anton', sans-serif;
  font-size: 1.2rem; letter-spacing: 2px;
  padding: 1.1rem 2.5rem; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(255,215,0,0.4);
  animation: pulseCTA 2.5s ease-in-out infinite;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,215,0,0.6);
  animation: none;
}
.btn-primary.large { font-size: 1.4rem; padding: 1.3rem 3rem; }

/* ====== SECTIONS ====== */
.section { padding: 5rem 1rem; }
.section-title { font-family: 'Anton', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: 2px; text-align: center; margin-bottom: 0.5rem; }
.section-title .gold { color: var(--amarelo-ouro); }
.section-title .neon { color: var(--verde-neon); }
.section-subtitle { text-align: center; font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 3rem; letter-spacing: 1px; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* ====== DELIVERY ====== */
.delivery-section {
  background: linear-gradient(135deg, var(--verde-escuro), #003d00, var(--verde-escuro));
  padding: 4rem 1rem; position: relative; overflow: hidden;
}
.delivery-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,215,0,0.03) 20px, rgba(255,215,0,0.03) 40px);
}
.delivery-hero { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.delivery-shield { font-size: 5rem; margin-bottom: 1rem; display: block; animation: pulseGlow 2s ease-in-out infinite; }
.delivery-title { font-family: 'Anton', sans-serif; font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: 3px; color: var(--amarelo-ouro); text-shadow: 2px 2px 0 rgba(0,0,0,0.5); line-height: 0.9; margin-bottom: 0.5rem; }
.delivery-main { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.5rem, 3vw, 2.8rem); color: var(--branco); letter-spacing: 3px; margin-bottom: 2rem; }
.delivery-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2rem; }
.delivery-card { background: rgba(0,0,0,0.4); border: 2px solid var(--amarelo-ouro); border-radius: 12px; padding: 1.2rem 1rem; text-align: center; backdrop-filter: blur(10px); }
.delivery-card .d-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.delivery-card strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: var(--amarelo-ouro); margin-bottom: 0.2rem; }
.delivery-card small { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ====== PRODUCT ====== */
.product-section { background: linear-gradient(180deg, #001400, #000d00, #001400); padding: 4rem 1rem; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto 3rem; }
.product-img { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.5); border: 2px solid rgba(255,215,0,0.2); transition: transform 0.3s, box-shadow 0.3s; }
.product-img:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(255,215,0,0.2); }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ====== ITEMS ====== */
.items-section { background: linear-gradient(180deg, #000d00, #001a00, #000d00); padding: 5rem 1rem; }
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.item-card {
  background: linear-gradient(135deg, rgba(0,100,0,0.3), rgba(0,0,0,0.5));
  border: 2px solid rgba(255,215,0,0.3); border-radius: 16px;
  padding: 1.5rem 1.2rem; text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.item-card:hover { transform: translateY(-8px); border-color: var(--amarelo-ouro); box-shadow: 0 15px 40px rgba(255,215,0,0.2); }
.item-num { font-family: 'Anton', sans-serif; font-size: 2.5rem; color: rgba(255,215,0,0.2); line-height: 1; margin-bottom: 0.5rem; }
.item-emoji { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.item-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px; color: var(--amarelo-ouro); margin-bottom: 0.4rem; }
.item-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.items-full-img { width: 100%; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); margin-top: 3rem; }

/* ====== BENEFITS ====== */
.benefits-section { background: linear-gradient(135deg, #001a00, #002800, #001400); padding: 5rem 1rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.benefit-card { background: rgba(0,0,0,0.4); border: 2px solid rgba(0,255,65,0.2); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.benefit-card:hover { transform: translateY(-6px); border-color: var(--verde-neon); }
.benefit-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.benefit-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px; color: var(--verde-neon); margin-bottom: 0.5rem; }
.benefit-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ====== OFFER ====== */
.offer-section { background: linear-gradient(135deg, #001400, #003200, #001400); padding: 6rem 1rem; text-align: center; position: relative; overflow: hidden; }
.offer-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,215,0,0.08) 0%, transparent 60%); }
.offer-box {
  max-width: 700px; margin: 0 auto;
  background: rgba(0,0,0,0.5); border: 3px solid var(--amarelo-ouro);
  border-radius: 24px; padding: 3rem 2rem; position: relative; z-index: 1;
  backdrop-filter: blur(20px); box-shadow: 0 0 80px rgba(255,215,0,0.2);
  transform: scale(0.9); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}
.offer-box.visible { transform: scale(1); opacity: 1; }
.offer-label { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 4px; color: var(--verde-neon); margin-bottom: 0.5rem; text-shadow: 0 0 10px rgba(0,255,65,0.5); }
.offer-name { font-family: 'Anton', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 2px; color: var(--branco); margin-bottom: 0.5rem; }
.offer-price { font-family: 'Anton', sans-serif; font-size: clamp(3rem, 7vw, 5.5rem); color: var(--amarelo-ouro); letter-spacing: 2px; line-height: 1; text-shadow: 0 0 30px rgba(255,215,0,0.5); margin: 0.5rem 0; }
.offer-delivery { font-size: 1rem; font-weight: 700; color: var(--verde-neon); margin-bottom: 0.3rem; }
.offer-free { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.offer-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* ====== IMAGES ROW ====== */
.images-row-section { background: #001400; padding: 3rem 1rem; }
.images-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.images-row img { width: 100%; border-radius: 16px; }

/* ====== FAQ ====== */
.faq-section { background: linear-gradient(180deg, #000d00, #001800); padding: 5rem 1rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: rgba(0,100,0,0.15); border: 2px solid rgba(255,215,0,0.2); border-radius: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(255,215,0,0.5); }
.faq-question { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; color: var(--amarelo-ouro); }
.faq-arrow { font-size: 1.2rem; color: var(--verde-neon); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.2rem; }
.faq-answer p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.faq-support { text-align: center; margin-top: 2.5rem; }
.faq-support p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; font-size: 0.95rem; }

/* ====== FINAL CTA ====== */
.final-cta { background: linear-gradient(135deg, var(--verde-escuro), #004d00, var(--verde-escuro)); padding: 6rem 1rem; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,215,0,0.1) 0%, transparent 70%); }
.final-cta-content { position: relative; z-index: 1; }
.final-cta-title { font-family: 'Anton', sans-serif; font-size: clamp(1.8rem, 4vw, 3.5rem); letter-spacing: 2px; color: var(--branco); margin-bottom: 0.5rem; }
.final-cta-title .gold { color: var(--amarelo-ouro); }
.final-cta-sub { font-size: 1rem; color: var(--verde-neon); font-weight: 700; letter-spacing: 2px; margin-bottom: 2.5rem; }
.final-trust { margin-top: 2rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.final-trust span { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ====== FOOTER ====== */
footer { background: #000; padding: 2.5rem 1rem; text-align: center; border-top: 2px solid rgba(255,215,0,0.2); }
.footer-flag { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.footer-trust { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: var(--amarelo-ouro); }
.footer-whatsapp { margin: 1.5rem 0; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 1rem; }

/* ====== STICKY CTA ====== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(135deg, var(--verde-escuro), #003d00);
  border-top: 2px solid var(--amarelo-ouro);
  padding: 0.8rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-price { font-family: 'Anton', sans-serif; font-size: 1.4rem; color: var(--amarelo-ouro); flex-shrink: 0; }
.sticky-label { font-size: 0.75rem; color: var(--verde-neon); font-weight: 700; letter-spacing: 1px; }
.sticky-neon { font-size: 0.7rem; color: var(--verde-neon); font-weight: 700; text-align: center; flex: 1; }
.sticky-btn {
  background: linear-gradient(135deg, var(--amarelo-ouro), var(--amarelo-escuro));
  color: var(--preto); font-family: 'Anton', sans-serif;
  font-size: 1rem; letter-spacing: 1px; padding: 0.8rem 1.5rem;
  border-radius: 50px; text-decoration: none; white-space: nowrap; flex-shrink: 0;
  animation: pulseCTA 2s ease-in-out infinite;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(60px) scale(0.8); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseGlow { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.2) drop-shadow(0 0 8px currentColor); } }
@keyframes pulseCTA { 0%, 100% { box-shadow: 0 6px 30px rgba(255,215,0,0.4); transform: scale(1); } 50% { box-shadow: 0 8px 40px rgba(255,215,0,0.7); transform: scale(1.02); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes confettiFall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 1; } 100% { transform: translateY(100vh) rotate(720deg); opacity: 0; } }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); transform: scale(1); } 50% { box-shadow: 0 4px 35px rgba(37,211,102,0.8); transform: scale(1.08); } }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-image { order: -1; }
  .hero-trust { justify-content: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .sticky-cta { display: none; }
  .whatsapp-label { display: none; }
}
@media (max-width: 480px) {
  .items-grid { grid-template-columns: 1fr 1fr; }
  .offer-box { padding: 2rem 1.2rem; }
  .btn-primary.large { font-size: 1.1rem; padding: 1rem 2rem; }
}
