/*
  ================================================================
  style.css — Lá Ele Distribuidora
  Organização:
    1. Tokens e Reset
    2. Utilitários (container, btn, section-header)
    3. Scrollbar
    4. Animações globais
    5. Header
    6. Hero
    7. Trust Bar
    8. Catálogo
    9. Urgência / Promoção
   10. Localização
   11. Footer
   12. Sticky WhatsApp
   13. Responsivo (breakpoints)
  ================================================================
*/


/* ================================================================
   1. TOKENS E RESET
   ⚠️ Para mudar a paleta global, altere as variáveis abaixo
   ================================================================ */
:root {
  /* Cores principais */
  --color-bg:         #0B0B0B;   /* fundo geral */
  --color-bg-2:       #111114;   /* fundo de cards/seções alternadas */
  --color-bg-3:       #191920;   /* fundo elevado (hover, inputs) */
  --color-border:     rgba(255, 255, 255, .07);
  --color-border-hi:  rgba(255, 255, 255, .14);

  --color-wa:         #25D366;   /* ⚠️ verde WhatsApp — botões principais */
  --color-wa-dark:    #1aab51;
  --color-wa-glow:    rgba(37, 211, 102, .35);

  --color-accent:     #FFC107;   /* ⚠️ amarelo âmbar — destaques e urgência */
  --color-accent-dim: rgba(255, 193, 7, .15);

  --color-red:        #FF4444;   /* vermelho — promoção/urgência extra */
  --color-red-dim:    rgba(255, 68, 68, .15);

  --color-text:       #F2F2F2;   /* texto principal */
  --color-text-2:     rgba(242, 242, 242, .65);  /* texto secundário */
  --color-text-3:     rgba(242, 242, 242, .38);  /* texto mudo */

  /* Tipografia */
  --font-display: 'Barlow Condensed', sans-serif;  /* headlines */
  --font-body:    'DM Sans', sans-serif;            /* corpo */

  /* Espaçamentos */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   64px;
  --space-2xl:  96px;

  /* Bordas arredondadas */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Sombras */
  --shadow-sm:  0 2px 12px rgba(0,0,0,.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,.55);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.7);

  /* Transição padrão */
  --ease: .22s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ================================================================
   2. UTILITÁRIOS
   ================================================================ */

/* Container centralizado */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Rótulo de seção (pílula acima do título) */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-accent-dim);
  border: 1px solid rgba(255, 193, 7, .25);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}

/* Título de seção */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .015em;
  margin-bottom: 10px;
}

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

/* Subtítulo de seção */
.section-sub {
  font-size: .95rem;
  color: var(--color-text-2);
  max-width: 500px;
}

/* Cabeçalho de seção centralizado */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ── BOTÕES ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition:
    background var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Tamanho padrão */
.btn--sm {
  font-size: .82rem;
  padding: 10px 18px;
  border-radius: 99px;
}

.btn--lg {
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-md);
}

/* Variante WhatsApp */
.btn--wa {
  background: var(--color-wa);
  color: #fff;
  box-shadow: 0 4px 20px var(--color-wa-glow);
}
.btn--wa:hover,
.btn--wa:focus-visible {
  background: var(--color-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-wa-glow);
}
.btn--wa:active {
  transform: translateY(0);
}

/* Botão hero — maior, com animação de pulso */
.btn--hero {
  font-size: 1.05rem;
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  animation: waPulse 2.8s ease-in-out infinite;
}

.btn__arrow {
  font-size: .8rem;
  transition: transform var(--ease);
}
.btn--wa:hover .btn__arrow {
  transform: translateX(4px);
}


/* ================================================================
   3. SCROLLBAR PERSONALIZADA
   ================================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-bg-3);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,193,7,.4);
}


/* ================================================================
   4. ANIMAÇÕES GLOBAIS
   ================================================================ */

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--color-wa-glow); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,.55); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(-3deg); }
  66%       { transform: translateY(-5px) rotate(3deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50%       { transform: translateY(-14px) rotate(-2deg); }
}

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

@keyframes popIn {
  0%   { opacity: 0; transform: scale(.7) rotate(-8deg); }
  70%  { transform: scale(1.06) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(-4deg); }
}

@keyframes ping {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%       { transform: scale(1.6); opacity: 0; }
}

@keyframes scanline {
  from { transform: translateY(-100%); }
  to   { transform: translateY(200%); }
}

/* Classe utilitária reveal (ativada pelo IntersectionObserver no JS) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays encadeados para filhos */
.reveal-group > *:nth-child(1) { transition-delay: .0s; }
.reveal-group > *:nth-child(2) { transition-delay: .1s; }
.reveal-group > *:nth-child(3) { transition-delay: .2s; }
.reveal-group > *:nth-child(4) { transition-delay: .3s; }
.reveal-group > *:nth-child(5) { transition-delay: .4s; }
.reveal-group > *:nth-child(6) { transition-delay: .5s; }


/* ================================================================
   5. HEADER
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 11, .85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--ease), border-color var(--ease);
}

.header.scrolled {
  background: rgba(11, 11, 11, .97);
  border-color: var(--color-border-hi);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-sm);
}

/* Logo no header */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 160px;     /* ⚠️ ajuste se a logo for maior/menor */
}

.header__logo-img {
  height: 38px;         /* ⚠️ ajuste altura da logo aqui */
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.header__logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.logo-icon { font-size: 1.6rem; }
.logo-text strong { color: var(--color-accent); }


/* ================================================================
   6. HERO
   ================================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Fundo com gradientes e grid */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__bg-glow--1 {
  width: 520px; height: 520px;
  background: rgba(37, 211, 102, .09);
  top: -120px; right: -80px;
}
.hero__bg-glow--2 {
  width: 400px; height: 400px;
  background: rgba(255, 193, 7, .07);
  bottom: -100px; left: -100px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image:         radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 100px;   /* compensa o header fixo */
  padding-bottom: 80px;
  width: 100%;
}

/* Lado esquerdo */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Pílula de urgência */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red-dim);
  border: 1px solid rgba(255, 68, 68, .3);
  color: #ff7070;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 99px;
  width: fit-content;
  animation: fadeUp .5s ease .1s both;
}

.pill__dot {
  width: 6px; height: 6px;
  background: var(--color-red);
  border-radius: 50%;
  animation: ping 1.4s ease-in-out infinite;
  display: inline-block;
}

/* Headline principal */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .01em;
  animation: fadeUp .5s ease .2s both;
}

.hero__title em {
  font-style: italic;
  color: var(--color-text-2);
}

.hero__title-accent {
  display: block;
  color: var(--color-accent);
  /* Efeito de contorno no texto */
  -webkit-text-stroke: 0;
  text-shadow: 0 0 40px rgba(255,193,7,.4);
}

/* Subtítulo */
.hero__sub {
  font-size: 1rem;
  color: var(--color-text-2);
  max-width: 440px;
  line-height: 1.65;
  animation: fadeUp .5s ease .3s both;
}

.hero__sub strong {
  color: var(--color-text);
}

/* Microcopy sob o botão */
.hero__microcopy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--color-text-3);
  animation: fadeUp .5s ease .5s both;
}

/* Lado direito — visual decorativo */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 380px;
}

.hero__cans {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.can {
  font-size: 5.5rem;
  line-height: 1;
  filter: drop-shadow(0 12px 32px rgba(37,211,102,.2));
}
.can--1 { animation: float   3.5s ease-in-out infinite; }
.can--2 { animation: floatB  4s   ease-in-out infinite; animation-delay: .6s; }
.can--3 { animation: float   3.8s ease-in-out infinite; animation-delay: 1.2s; }

/* Badge de tempo de entrega */
.hero__badge {
  position: absolute;
  top: 10px; right: 0;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border-hi);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  animation: popIn .5s ease .7s both;
  box-shadow: var(--shadow-md);
}

.hero__badge-top {
  font-size: .7rem;
  font-weight: 600;
  color: var(--color-text-2);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero__badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
}

.hero__badge-num span {
  font-size: 1.1rem;
  color: var(--color-text-2);
}


/* ================================================================
   7. TRUST BAR
   ================================================================ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--color-bg-2);
  border-top:    1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 20px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 24px;
}

.trust-bar__icon {
  color: var(--color-accent);
  font-size: .95rem;
}

.trust-bar__text {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-2);
  white-space: nowrap;
}

.trust-bar__sep {
  width: 1px;
  height: 28px;
  background: var(--color-border-hi);
}


/* ================================================================
   8. CATÁLOGO
   ================================================================ */
.catalog {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

/* Abas de categoria */
.catalog__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.catalog__tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-bg-2);
  color: var(--color-text-2);
  cursor: pointer;
  transition: all var(--ease);
}

.catalog__tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-hi);
}

.catalog__tab.is-active {
  background: var(--color-accent);
  color: #0B0B0B;
  border-color: var(--color-accent);
  font-weight: 700;
}

/* Grid de produtos */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

/* Card de produto */
.product-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
  cursor: default;
  position: relative;
}

.product-card:hover {
  border-color: rgba(255,193,7,.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(255,193,7,.06);
}

/* Badge de promoção */
.product-card--promo::before {
  content: '🔥 PROMO';
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-red);
  color: #fff;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 99px;
}

/* Área da imagem/emoji do produto */
.product-card__img {
  height: 160px;
  background: var(--color-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,193,7,.06), transparent 70%);
}

.product-card__emoji {
  transition: transform .3s ease;
  line-height: 1;
}

.product-card:hover .product-card__emoji {
  transform: scale(1.12) rotate(-5deg);
}

/* Informações do produto */
.product-card__body {
  padding: 14px;
}

.product-card__name {
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__desc {
  font-size: .75rem;
  color: var(--color-text-3);
  margin-bottom: 12px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.product-card__price-old {
  font-size: .7rem;
  color: var(--color-text-3);
  text-decoration: line-through;
  line-height: 1;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.product-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-wa);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.product-card__btn:hover {
  background: var(--color-wa-dark);
  transform: scale(1.04);
}


/* ================================================================
   9. URGÊNCIA / PROMOÇÃO
   ================================================================ */
.urgency {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.urgency__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,193,7,.06), transparent),
    linear-gradient(135deg, #0f0d00 0%, #0B0B0B 50%, #000a03 100%);
  border-top: 1px solid rgba(255,193,7,.12);
  border-bottom: 1px solid rgba(255,193,7,.12);
}

.urgency__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Lado esquerdo */
.urgency__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red-dim);
  border: 1px solid rgba(255, 68, 68, .3);
  color: var(--color-red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  width: fit-content;
}

.urgency__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.urgency__highlight {
  color: var(--color-accent);
  display: block;
}

.urgency__desc {
  font-size: .92rem;
  color: var(--color-text-2);
  max-width: 420px;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Cronômetro */
.urgency__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-width: 68px;
}

.countdown__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-red);
}

.countdown__label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-top: 3px;
}

.countdown__colon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-3);
  margin-bottom: 14px;
  align-self: center;
}

/* Lado direito — visual */
.urgency__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.urgency__emoji {
  font-size: 7rem;
  filter: drop-shadow(0 16px 40px rgba(255,193,7,.3));
  animation: float 3.5s ease-in-out infinite;
}

.urgency__price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border-hi);
  border-radius: var(--radius-md);
  padding: 16px 28px;
}

.urgency__price-old {
  font-size: .85rem;
  color: var(--color-text-3);
  text-decoration: line-through;
}

.urgency__price-new {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}


/* ================================================================
   10. LOCALIZAÇÃO
   ================================================================ */
.location {
  padding: var(--space-xl) 0;
  background: var(--color-bg-2);
  border-top:    1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.location__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--color-bg-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.location__item > i {
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location__item strong {
  font-size: .88rem;
  font-weight: 700;
  display: block;
}

.location__item span {
  font-size: .82rem;
  color: var(--color-text-2);
}

/* Mapa decorativo */
.location__map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map__placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border-hi);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.map__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 55%, rgba(37,211,102,.07), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,193,7,.05), transparent 50%);
}

/* Efeito scanline decorativo */
.map__placeholder::after {
  content: '';
  position: absolute;
  width: 100%; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,193,7,.03), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
}

.map__icon {
  font-size: 3rem;
  color: var(--color-accent);
  opacity: .7;
  position: relative;
  z-index: 1;
}

.map__city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .03em;
  position: relative;
  z-index: 1;
}

.map__state {
  font-size: .78rem;
  color: var(--color-text-3);
  position: relative;
  z-index: 1;
}

.map__ping {
  width: 16px; height: 16px;
  background: var(--color-wa);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--color-wa-glow);
  animation: mapPing 1.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes mapPing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  50%       { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}


/* ================================================================
   11. FOOTER
   ================================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0 100px; /* padding-bottom para não sobrepor sticky */
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  height: 36px;    /* ⚠️ ajuste a altura da logo no footer */
  width: auto;
  object-fit: contain;
  opacity: .8;
}

.footer__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-accent);
}

.footer__tagline {
  font-size: .82rem;
  color: var(--color-text-3);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
}

.footer__nav a {
  font-size: .82rem;
  color: var(--color-text-2);
  transition: color var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

.footer__copy {
  font-size: .74rem;
  color: var(--color-text-3);
}


/* ================================================================
   12. STICKY WHATSAPP
   Sempre visível no rodapé — maior conversor em mobile!
   ================================================================ */
.sticky-wa {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(11,11,11,1) 60%, transparent);
  pointer-events: none;
}

.sticky-wa__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-wa);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  animation: waPulse 2.8s ease-in-out infinite;
  transition: background var(--ease), transform var(--ease);
  pointer-events: all;
}

.sticky-wa__btn:hover {
  background: var(--color-wa-dark);
  transform: translateY(-2px);
}

.sticky-wa__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Ocultar sticky no desktop (tem espaço para botão no corpo) */
@media (min-width: 768px) {
  .sticky-wa {
    display: none;
  }
  .footer {
    padding-bottom: var(--space-lg); /* restaura padding no desktop */
  }
}


/* ================================================================
   13. RESPONSIVO
   Mobile-first: breakpoints para layouts de 2 colunas
   ================================================================ */

/* Tablet/Desktop (≥ 768px) */
@media (min-width: 768px) {
  .trust-bar {
    padding: 20px;
  }
  .trust-bar__text {
    font-size: .9rem;
  }
}

/* Desktop médio (≥ 1024px) */
@media (min-width: 1024px) {
  .catalog__grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* MOBILE — abaixo de 768px */
@media (max-width: 767px) {

  /* Hero: coluna única */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 90px;
    padding-bottom: 80px; /* espaço para sticky */
  }

  /* Oculta o visual decorativo no mobile (foco no texto) */
  .hero__visual {
    display: none;
  }

  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  /* Trust bar: scroll horizontal no mobile */
  .trust-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar::-webkit-scrollbar { display: none; }

  .trust-bar__sep { display: none; }

  .trust-bar__item {
    flex-shrink: 0;
    padding: 6px 18px;
  }

  /* Urgência: coluna única */
  .urgency__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .urgency__visual { order: -1; }

  /* Localização: coluna única */
  .location__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .location__map { display: none; } /* oculta mapa decorativo no mobile */

  /* Grid de produtos: 2 colunas compactas */
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__img { height: 130px; }
  .product-card__body { padding: 10px; }
  .product-card__name { font-size: .84rem; }
  .product-card__footer { flex-wrap: wrap; gap: 6px; }
  .product-card__btn { width: 100%; justify-content: center; font-size: .78rem; }

  .countdown__block { min-width: 56px; padding: 10px 12px; }
  .countdown__num   { font-size: 1.8rem; }
}

/* Mobile pequeno (< 400px) */
@media (max-width: 399px) {
  .catalog__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero__title {
    font-size: 2.8rem;
  }
  .btn--hero {
    font-size: .95rem;
    padding: 15px 20px;
  }
}
