/* ============================================
   ACHADO NO PRECIN' - STYLE.CSS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@900&family=Varela+Round&display=swap');



/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root {
  --primary-blue: #0A2F6B;
  --secondary-blue: #073061;
  --light-blue: #EEF5FF;
  --primary-yellow: #FFD84D;
  --primary-red: #E11D48;
  --dark-text: #101828;
  --gray-text: #475467;
  --light-gray: #F6F7FB;
  --white: #ffffff;
  --shadow: rgba(16,24,40,.12);
  --accent-pink: #C2185B;
}



body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* ============================================
   FIX ÂNCORAS
   ============================================ */
html {
  scroll-padding-top: 25px;
  scroll-behavior: smooth;
}
#cupons { scroll-margin-top: 25px; }



/* ============================================
   CABEÇALHO
   ============================================ */
.header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}



.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}



.header .logo {
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s ease;
}
.header .logo:hover { opacity: .92; }
.header .logo:focus-visible {
  outline: 2px solid rgba(255,255,255,.90);
  outline-offset: 4px;
}



.header .logo-img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
}



/* NAV */
#nav-menu .nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}


#nav-menu .nav-list a {
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 2px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  transition: opacity .15s ease, transform .15s ease;
}


#nav-menu .nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  width: 0;
  background: rgba(255,255,255,.92);
  transition: width .18s ease;
}


#nav-menu .nav-list a:hover { opacity: .95; transform: translateY(-1px); }
#nav-menu .nav-list a:hover::after { width: 100%; }
#nav-menu .nav-list a.active { font-weight: 700; }
#nav-menu .nav-list a.active::after { width: 100%; }


#nav-menu .nav-list a:focus-visible {
  outline: 2px solid rgba(255,255,255,.90);
  outline-offset: 4px;
}


/* BOTÃO "VER LOJAS PARCEIRAS" */
#nav-menu .nav-list .nav-btn-lojas {
  background: var(--primary-yellow);
  color: #0b1f3a;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .1px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

#nav-menu .nav-list .nav-btn-lojas::after { display: none; }

#nav-menu .nav-list .nav-btn-lojas:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.20);
  filter: brightness(.98);
}



/* MENU MOBILE */
.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.menu-mobile span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .2s ease;
}
.menu-mobile:hover span { background: var(--primary-yellow); }



/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem 0 2.5rem;
  display: flex;
  align-items: center;
}



/* menu mobile sanduiche */
@media (max-width: 768px) {
  .menu-mobile { display: flex; }

  #nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 16px;
    left: 16px;
    background: #0A2F6B;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
    z-index: 9999;
  }

  #nav-menu.is-open { display: block; }

  #nav-menu .nav-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  #nav-menu .nav-list a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  #nav-menu .nav-list .nav-btn-lojas {
    justify-content: center;
    width: 100%;
  }
}



/* ── HERO GRID ── */
.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}



.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: center;
}



.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #101828;
  margin-bottom: 16px;
}
.hero-title .highlight,
.hero-highlight { color: var(--primary-blue); }



.hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 4px;
}



.hero-sub-light {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: #475467;
  margin-top: 0;
  margin-bottom: 0;
}



/* ── CTA: caixa branca "Achado do dia" ── */
.featured-magalu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  min-width: 300px;
  align-self: center;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 2px dashed #0A2F6B;
  margin-top: 50px;
  margin-bottom: 28px;
  position: relative;
}



.featured-magalu::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #c3cfe2;
  border-radius: 50%;
  border: 2px dashed #0A2F6B;
}



.featured-magalu::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #c3cfe2;
  border-radius: 50%;
  border: 2px dashed #0A2F6B;
}



/* ETIQUETA — sem cara de botão */
.featured-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #B54708;
  background: rgba(255,107,0,.10);
  border: 1px solid rgba(255,107,0,.25);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  text-transform: uppercase;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}



.featured-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.5;
  margin: 0;
}



.featured-divider {
  border: none;
  border-top: 1px solid #F0F0F0;
  margin: 0;
}



.featured-store {
  display: flex;
  flex-direction: column;
  gap: 2px;
}



.featured-store-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #AAA;
  letter-spacing: 1px;
  text-transform: uppercase;
}



.featured-store-name {
  font-family: 'Varela Round', 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  align-self: center;
}



/* Underline discreto (sem arco-íris) */
.featured-store-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
}



/* CTA principal — amarelo */
.btn-featured {
  display: block;
  background: var(--primary-yellow);
  color: #101828;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 35px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  margin: 0;
  align-self: center;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 4px 14px rgba(16,24,40,.16);
  transition: filter .2s, transform .1s;
}
.btn-featured:hover {
  filter: brightness(.97);
  transform: translateY(-1px);
}



.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 90px;
}



.benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(26,26,26,.70);
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(0,0,0,.08);
  white-space: nowrap;
}



/* Botão secundário — sem animação pulsante no desktop */
.secondary-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 26px;
  margin-top: 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-blue);
  background: #ffffff;
  border: 2px solid var(--primary-blue);
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(10,47,107,.10);
}

.secondary-btn:hover {
  background: #f0f5ff;
  border-color: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10,47,107,.15);
}


/* ── Coluna direita: card lojas ── */
.hero-stores {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  width: 100%;
}



.hero-stores::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-yellow) 50%, #EE4D2D 100%);
  opacity: .7;
}



.stores-title {
  font-size: 1rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 0.9rem;
  text-align: center;
}



.stores-title::before {
  content: '✓';
  display: inline-block;
  background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  margin-right: 10px;
  vertical-align: middle;
}



.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}



.store-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #e8eaed;
  min-height: 110px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  color: inherit;
}



.store-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .5s ease;
}
.store-btn:hover::before { left: 100%; }



.store-btn::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  opacity: .95;
}



.store-btn.store-amazon::after       { background: #FF9900; }
.store-btn.store-magalu::after       { background: #0066CC; }
.store-btn.store-mercadolivre::after { background: #FFE600; }
.store-btn.store-shopee::after       { background: #EE4D2D; }



.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}
.store-btn:active  { transform: translateY(0); }
.store-btn:focus-visible {
  outline: 3px solid rgba(10,47,107,.30);
  outline-offset: 4px;
}



.store-btn.store-amazon:hover       { border-color: #FF9900; background: linear-gradient(135deg, #fff9f0 0%, #fff 100%); }
.store-btn.store-magalu:hover       { border-color: #0066CC; background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%); }
.store-btn.store-mercadolivre:hover { border-color: #FFE600; background: linear-gradient(135deg, #fffef0 0%, #fff 100%); }
.store-btn.store-shopee:hover       { border-color: #EE4D2D; background: linear-gradient(135deg, #fff5f0 0%, #fff 100%); }



.store-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #101828;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 5px 9px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.store-badge .store-pct { color: var(--accent-pink); font-weight: 900; }



.store-logo {
  width: 86px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 6px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.08));
  transition: transform .3s ease, filter .3s ease;
}
.store-btn:hover .store-logo {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
  transform: scale(1.05);
}



.store-name {
  font-size: .95rem;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  line-height: 1.2;
}



/* CTA da loja — amarelo */
.store-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  color: #101828;
  background: var(--primary-yellow);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 4px 10px rgba(255,216,77,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.store-btn:hover .store-cta {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(255,216,77,.30);
}



.stores-footer-cta {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: center;
}
.stores-footer-cta .secondary-btn {
  width: 100%;
  max-width: 280px;
}



/* ============================================
   ACHADO DO DIA — CARD HERO
   ============================================ */

.achado-dia-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  border: 1px solid #e8eaed;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;        /* ← era 360px, card maior */
  margin: 0 auto;
  align-self: center;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.achado-dia-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
}

.achado-dia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-color: var(--primary-blue);
}

/* ── TOP BAR ── */
.achado-dia-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* Etiqueta "ACHADO DO DIA" */
.achado-dia-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,47,107,.09);
  color: var(--primary-blue);
  border: 1px solid rgba(10,47,107,.20);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  margin-bottom: 0;
}

/* Badge "PROMOÇÃO" — vermelho/rosado, remete a sale */
.achado-dia-badge {
  background: rgba(220,38,38,.10);
  color: #B91C1C;
  border: 1px solid rgba(220,38,38,.28);
  padding: .3rem .8rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

/* ── LINHA: imagem + info ── */
.achado-dia-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

/* Moldura da imagem — quadrada, um pouco maior */
.achado-dia-img-wrap {
  flex: 0 0 110px;
  width: 110px;
  height: 125px;           /* ← mais alta */
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.achado-dia-img {
  max-width: 100px;        /* ← acompanha o wrap */
  max-height: 105px;
  object-fit: contain;
  padding: 4px;
}

/* Coluna de texto — mais recuada à direita */
.achado-dia-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding-left: 6px;       /* ← empurra o texto pra direita */
  border-left: 1px solid #f0f0f0;  /* ← divisor sutil entre img e texto */
}
/* Nome da loja — maior e destacado */
.achado-dia-loja-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a5568;
}

.achado-dia-loja-nome {
  font-family: 'Varela Round', 'Nunito', sans-serif;
  font-size: 1rem;          /* ← era 0.80rem, bem maior */
  font-weight: 900;
  color: var(--primary-blue);
  display: block;           /* ← ocupa linha própria */
  margin-top: 1px;
}

.achado-dia-titulo {
  font-size: 0.88rem;
  font-weight: 700;
  color: #101828;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.achado-dia-desc {
  font-size: .78rem;
  color: #4a5568;
  line-height: 1.4;
  margin: 0;
}

/* Bloco de desconto */
.achado-dia-desconto {
  background: rgba(255,216,77,.18);
  border-left: 3px solid #FF9900;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.78rem;
  color: #333;
  margin-top: 2px;
}

.achado-dia-desconto span {
  font-weight: 700;
  color: #B54708;
}

/* CTA — menor e centralizado */
.achado-dia-btn {
  display: block;
  background: var(--primary-yellow);
  color: #101828;
  padding: .55rem 1.2rem;   /* ← era .7rem 1.5rem, menor */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;        /* ← era .9rem */
  text-align: center;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 4px 14px rgba(16,24,40,.16);
  transition: filter .2s ease, transform .2s ease;
  margin-top: 10px;
  width: fit-content;       /* ← não ocupa 100% */
  min-width: 160px;         /* ← largura mínima legível */
  margin-left: auto;        /* ← centralizado */
  margin-right: auto;
}

.achado-dia-btn:hover {
  filter: brightness(.97);
  transform: translateY(-2px);
}

.achado-dia-aviso {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 0;
}



/* ============================================
   SEÇÃO CUPONS
   ============================================ */
.cupons-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}



.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #101828;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
  border-radius: 2px;
}



.section-subtitle {
  max-width: 820px;
  margin: -1.6rem auto 1.6rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #101828;
  font-weight: 600;
}
.section-subtitle-highlight { color: var(--accent-pink); font-weight: 800; }



.section-subtitle--alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: fit-content;
  max-width: 100%;
  margin: -1.6rem auto 1.6rem;
  padding: .75rem 1.05rem;
  border-radius: 14px;
  background: rgba(10,47,107,.07);
  border: 1px solid rgba(10,47,107,.18);
  box-shadow: 0 10px 26px rgba(10,47,107,.08);
}



.section-subtitle-icon {
  width: 34px; height: 34px;
  padding: 7px;
  border-radius: 10px;
  color: var(--primary-blue);
  background: rgba(10,47,107,.10);
  border: 1px solid rgba(10,47,107,.15);
  flex: 0 0 auto;
}
.section-subtitle-text { display: inline-block; }



.cupons-section .filtros-wrapper,
.cupons-section .cupons-grid { text-align: left; }



.filtros-wrapper { margin-bottom: 2rem; }



.filtro-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: .8rem;
  padding-left: .5rem;
}



.filtros-plataformas,
.filtros-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}



.filtro-btn {
  padding: .7rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  background: #fff;
  color: #4a5568;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.filtro-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(10,47,107,.15);
}
.filtro-btn.ativo {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(10,47,107,.28);
}



#filtros-plataformas .filtro-btn.ativo {
  background: var(--primary-blue) !important;
  color: #ffffff !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 4px 12px rgba(10,47,107,.35) !important;
  transform: translateY(-2px);
}



.cupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}



.cupom-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: 1px solid #e8eaed;
  position: relative;
  overflow: hidden;
}
.cupom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
}
.cupom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.08);
  border-color: var(--primary-blue);
}



.cupom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cupom-plataforma { font-size: .85rem; font-weight: 600; color: #4a5568; }

/* Badge do cupom — etiqueta, não botão */
.cupom-badge {
  background: rgba(0,150,57,.10);
  color: #007E33;
  border: 1px solid rgba(0,150,57,.22);
  padding: .4rem .9rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.cupom-titulo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: .7rem;
  line-height: 1.3;
}
.cupom-descricao {
  font-size: .9rem;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 1rem;
}



.cupom-codigo {
  display: inline-flex;
  align-items: center;
  background: #f8f8f8;
  border: 1.5px dashed #ccc;
  border-radius: 6px;
  padding: 5px 10px;
  margin: 6px 0;
  text-decoration: none;
  cursor: pointer;
}
.cupom-codigo code {
  font-size: 0.78rem;
  font-weight: 700;
  color: #101828;
  letter-spacing: 1px;
  text-decoration: none;
}
.cupom-codigo:hover {
  background: rgba(255,216,77,.20);
  border-color: #FF9900;
}



.cupom-desconto-destaque {
  background: rgba(255,216,77,.15);
  border-left: 4px solid #FF9900;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: #333;
  margin-bottom: 10px;
}
.cupom-desconto-destaque strong { color: #B54708; }



.sem-cupom-txt {
  font-size: 0.78rem;
  color: #28a745;
  margin: 0 0 10px;
}



.cupom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cupom-validade { font-size: .8rem; color: #718096; }



/* CTA principal — amarelo */
.btn-ver-codigo {
  background: var(--primary-yellow);
  color: #101828;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 4px 14px rgba(16,24,40,.16);
  transition: filter .2s ease, transform .2s ease;
}
.btn-ver-codigo:hover {
  filter: brightness(.97);
  transform: translateY(-2px);
}



.sem-cupons {
  text-align: center;
  font-size: 1.2rem;
  color: #718096;
  padding: 3rem 1rem;
  grid-column: 1 / -1;
}



/* ============================================
   BENEFÍCIOS
   ============================================ */
.beneficios { padding: 80px 0; background: #f8f9fa; }
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.beneficio-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all .3s ease;
}
.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,.08);
  border-color: var(--primary-blue);
}
.beneficio-icone {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--light-blue);
  color: var(--primary-blue);
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.beneficio-card h3 { font-size: 1.15rem; font-weight: 700; color: #1a202c; margin-bottom: .8rem; }
.beneficio-card p  { font-size: .9rem; color: #4a5568; line-height: 1.6; margin: 0; }



/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.depoimento-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
}
.depoimento-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}
.avatar {
  width: 60px; height: 60px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.depoimento-nome    { font-size: 1.1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 5px; }
.depoimento-estrelas { color: var(--primary-yellow); font-size: 1rem; }
.depoimento-texto   { color: var(--gray-text); line-height: 1.6; font-size: .95rem; }



/* ============================================
   FAIXA DE LOJAS
   ============================================ */
.lojas-faixa {
  background: #fff;
  padding: 30px 0 40px;
  border-bottom: 1px solid #eee;
}


.lojas-faixa-titulo {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #101828;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.lojas-faixa-titulo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
}


.lojas-faixa-sub {
  text-align: center;
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 20px;
}


.lojas-faixa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}


.loja-faixa-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  border: 1.5px solid #e8eaed;
  background: #fff;
}


.loja-faixa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
}


.loja-card-magalu      { border-top: 4px solid #0066CC; }
.loja-card-shopee      { border-top: 4px solid #EE4D2D; }
.loja-card-amazon      { border-top: 4px solid #FF9900; }
.loja-card-ml          { border-top: 4px solid #FFE600; }


.loja-faixa-top {
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  gap: 10px;
  position: relative;
}


.loja-faixa-magalu { background: linear-gradient(135deg, #f0f7ff, #dceeff); }
.loja-faixa-shopee { background: linear-gradient(135deg, #fff5f0, #ffe5dc); }
.loja-faixa-amazon { background: linear-gradient(135deg, #fffbf0, #fff3d0); }
.loja-faixa-ml     { background: linear-gradient(135deg, #fffef0, #fffbd0); }


.loja-faixa-badge {
  position: absolute;
  top: 8px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #101828;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 4px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  white-space: nowrap;
  cursor: default;
  pointer-events: none;
}


.loja-faixa-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform .2s ease;
}
.loja-faixa-card:hover .loja-faixa-logo {
  transform: scale(1.06);
}


.loja-faixa-bottom {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  height: auto;
}


/* Botão principal da loja — cor de marca */
.loja-faixa-btn-principal {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.08);
  transition: opacity .2s, transform .15s;
  color: #fff;
}
.loja-faixa-btn-principal:hover {
  opacity: .88;
  transform: translateY(-1px);
}


.loja-btn-magalu      { background: #0066CC; }
.loja-btn-shopee      { background: #EE4D2D; }
.loja-btn-amazon      { background: #FF9900; color: #101828; }
.loja-btn-ml          { background: #FFE600; color: #101828; }


/* Botão cupons — azul outline */
.loja-faixa-btn-cupons {
  display: block;
  text-align: center;
  padding: 9px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-blue) !important;
  text-decoration: none;
  background: #ffffff !important;
  border: 1.5px solid var(--primary-blue) !important;
  transition: all .2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.loja-faixa-btn-cupons:hover {
  background: #f0f5ff !important;
  border-color: var(--primary-blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(10,47,107,.12);
}



@media (max-width: 768px) {
  .lojas-faixa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lojas-faixa-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .loja-faixa-top   { min-height: 100px; padding: 20px 16px; }
  .loja-faixa-logo  { height: 36px; }
}



/* ============================================
   RODAPÉ
   ============================================ */
.footer { background: #101828; color: var(--white); padding: 50px 0 20px; }
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-section h3 { color: var(--primary-yellow); margin-bottom: 20px; font-size: 1.2rem; }
.footer-section p  { color: #ccc; line-height: 1.8; margin-bottom: 15px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
  display: inline-block;
}
.footer-section ul li a:hover { color: var(--primary-yellow); padding-left: 5px; }
.footer-social { display: flex; gap: 15px; margin-top: 15px; }
.footer-social a { font-size: 1.5rem; transition: transform .3s ease; text-decoration: none; }
.footer-social a:hover { transform: scale(1.2); }


.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #444, transparent);
  margin: 30px 0 20px;
}
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; }
.footer-bottom p { color: #999; margin-bottom: 10px; }
.footer-affiliate-notice { font-size: .9rem; color: #bbb; }
.footer-affiliate-notice a { color: var(--primary-yellow); text-decoration: underline; }
.footer-affiliate-notice a:hover { color: var(--white); }



/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px; right: 25px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9999;
  text-decoration: none;
  transition: all .3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 25px rgba(37,211,102,.6);
}
.whatsapp-icon { width: 35px; height: 35px; color: white; }



/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* Sem animação de pulso no botão secundário */
@keyframes pulse-laranja-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(3px) scale(1.01); }
}



/* ============================================
   RESPONSIVO — 968px
   ============================================ */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-stores  { max-width: 550px; margin: 0 auto; }
  .achado-dia-card { max-width: 100%; margin-left: 0; }
  .lojas-faixa-grid { grid-template-columns: repeat(2, 1fr); }
}



/* ============================================
   RESPONSIVO — 768px
   ============================================ */
@media (max-width: 768px) {
  html { scroll-padding-top: 45px; }
  #cupons { scroll-margin-top: 45px; }

  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--secondary-blue);
    padding: 1.1rem 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
  }
  .nav.active { display: block; }
  #nav-menu .nav-list { flex-direction: column; align-items: stretch; gap: 10px; }
  #nav-menu .nav-list a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
  }
  #nav-menu .nav-list a::after { display: none; }
  .menu-mobile { display: flex; }
  .header .logo-img { height: 38px; }

  .hero { padding: 2rem 0 2.5rem; }
  .hero-title { font-size: 2.2rem; }
  .featured-magalu { margin-top: 20px; margin-bottom: 20px; }

  .stores-grid { gap: 1rem; }
  .store-btn { padding: 44px 12px 12px; min-height: 115px; }
  .store-logo { width: 80px; height: 40px; }
  .store-name { font-size: .92rem; }

  .section-title { font-size: 2rem; }

  .cupons-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }

  .cupom-card { padding: .85rem .7rem; }
  .cupom-header { flex-direction: column; align-items: flex-start; gap: .25rem; margin-bottom: .4rem; }
  .cupom-badge { font-size: .7rem; padding: .25rem .55rem; }
  .cupom-plataforma { font-size: .74rem; }
  .cupom-titulo { font-size: .84rem; margin-bottom: .3rem; line-height: 1.2; }
  .cupom-descricao { font-size: .75rem; margin-bottom: .4rem; line-height: 1.35; }
  .cupom-codigo { padding: .35rem .5rem; margin: 4px 0; border-radius: 6px; }
  .cupom-codigo code { font-size: .72rem; letter-spacing: 0; color: #101828; }
  .cupom-footer { flex-direction: column; align-items: stretch; gap: .25rem; }
  .btn-ver-codigo { width: 100%; text-align: center; padding: .4rem .5rem; font-size: .75rem; border-radius: 30px; }

  .beneficios-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .beneficio-card { align-items: center; text-align: center; }

  .filtro-titulo { display: none; }
  .filtros-plataformas {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: .6rem;
  }
  .filtros-plataformas::-webkit-scrollbar { height: 3px; }
  .filtros-plataformas::-webkit-scrollbar-track { background: transparent; }
  .filtros-plataformas::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 999px;
  }
  .filtros-plataformas .filtro-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: .6rem 1.2rem;
    font-size: .88rem;
  }

  /* ← ADICIONE AQUI (antes do } final) */
  .hero-benefits {
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }

  .benefit {
    font-size: 12px;
    padding: 7px 14px;
  }

}



/* ============================================
   RESPONSIVO — 480px
   ============================================ */
@media (max-width: 480px) {
  .header .logo-img { height: 32px; }
  .hero-title { font-size: 1.9rem; }

  .stores-title { font-size: 1rem; }
  .store-btn { padding: 40px 10px 10px; min-height: 100px; }
  .store-logo { width: 70px; height: 35px; }
  .store-name { font-size: .88rem; }

  .section-title { font-size: 1.7rem; }
  .section-subtitle { margin: -1.2rem auto 1.2rem; font-size: .98rem; padding: 0 8px; }
  .section-subtitle--alert { padding: .7rem .9rem; border-radius: 12px; }
  .section-subtitle-icon { width: 30px; height: 30px; padding: 6px; border-radius: 9px; }

  .cupons-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .cupom-card { padding: .75rem .6rem; }
  .cupom-titulo { font-size: .82rem; line-height: 1.2; }
  .cupom-descricao { font-size: .72rem; margin-bottom: .35rem; }
  .cupom-codigo { padding: .3rem .45rem; margin: 3px 0; }
  .cupom-codigo code { font-size: .68rem; letter-spacing: 0; color: #101828; }
  .cupom-footer { flex-direction: column; align-items: stretch; gap: .2rem; }
  .btn-ver-codigo { width: 100%; text-align: center; padding: .38rem .5rem; font-size: .72rem; }
}


.pagina-hero-logo {
  height: 40px;        /* ← troque aqui */
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
