:root {
  --green-deep: #e01e1e;
  --gren-text: #e4f2e9;
  --green-mid: #12724c;
  --green-soft: #e4f2e9;
  --lime: #c7d38cd8;
  --paper: #fbf7ec;
  --ink: #0f2118;
  --ink-soft: #4b5f55;
  --coral: #f0533d;
  --whatsapp: #25d366;
  --radius: 18px;
  --shadow: 0 12px 28px rgba(11, 77, 51, 0.14);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.display {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mono {
  font-family: "Space Mono", monospace;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.zap {
  width: 20px;
  height: 10px;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 20, 20, 0.925);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed rgba(11, 77, 51, 0.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 110px;
  width: 210px;
  object-fit: contain;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: var(--lime);
}
.logo-mark::before {
  width: 20px;
  height: 5px;
  border-radius: 3px;
}
.logo-mark::after {
  width: 5px;
  height: 20px;
  border-radius: 3px;
}
.logo-text {
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  line-height: 1.05;
  color: var(--green-deep);
  text-transform: uppercase;
}
.logo-text span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--coral);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 14.5px;
  color: #d4f144;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  height: 50px;
  width: 250px;
  gap: 8px;
  background: var(--whatsapp);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 85px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(212, 241, 68, 0.35),
      transparent 45%
    ),
    radial-gradient(circle at 10% 90%, rgba(18, 114, 76, 0.12), transparent 40%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "●";
  color: var(--coral);
  font-size: 9px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.02;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 60%, var(--lime) 60%);
}
.hero p.sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
  align-items: center;
}
.hero-ctas a {
  width: auto;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 40px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-outline {
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: #ffffff;
}
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats b {
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  color: var(--green-deep);
}
.hero-stats span {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* stamp / ticket visual */
.stamp-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* [AUMENTADO] Aumentei de 280px para 480px para dar MUITO destaque no PC */
  max-width: 480px;
  aspect-ratio: 500 / 320; /* Proporção oval perfeita para as linhas tracejadas */
  margin: 0 auto;
}

.stamp {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Cria o formato oval baseado na proporção do wrap */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(-9deg);
  border: 6px dashed rgba(255, 255, 255, 0.35);
  filter: drop-shadow(0 20px 50px rgba(110, 5, 5, 0.562));
}

.stamp img {
  /* Solta a imagem para ela ignorar as bordas do oval */
  /* [CONSERTADO] O segredo do tamanho: basear na LARGURA e não na ALTURA */
  width: 10000; /* Moeda de ouro grandona ocupando 80% da largura total */
  height: auto;
  /* Força a moeda a ser sempre um círculo perfeito */
  object-fit: contain;
  z-index: 5; /* Garante que a moeda fique por cima das linhas tracejadas */
}

.stamp-inner {
  text-align: center;
  color: #fff;
  display: none; /* Esconde o texto interno antigo, pois agora a moeda é grande */
}
.stamp-inner .top {
  font-family: "Archivo Black";
  font-size: 15px;
  letter-spacing: 2px;
}
.stamp-inner .big {
  font-family: "Archivo Black";
  font-size: 54px;
  color: var(--lime);
  line-height: 1;
  margin: 6px 0;
}
.stamp-inner .bottom {
  font-family: "Archivo Black";
  font-size: 13px;
  letter-spacing: 3px;
}
.stamp-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(11, 77, 51, 0.3);
  animation: spin 40s linear infinite;
}
.stamp-ring1 {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(235, 48, 1, 0.3);
  animation: spin 10s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .stamp-ring {
    animation: none;
  }
}
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-chip.c1 {
  top: 0;
  left: -10px;
  color: var(--green-deep);
}
.float-chip.c2 {
  bottom: 6px;
  right: -14px;
  color: var(--coral);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
}

/* ---------- DIFERENCIAIS ---------- */
.strip {
  background: var(--green-deep);
  padding: 26px 0;
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex: 1;
  min-width: 220px;
}
.strip-ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 241, 68, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime);
  font-size: 18px;
}
.strip-item b {
  display: block;
  font-size: 14.5px;
}
.strip-item span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- SECTION HEAD ---------- */
.section {
  padding: 80px 0;
}
.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.sec-tag {
  color: var(--coral);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green-deep);
  margin-top: 10px;
  line-height: 1.1;
}
.sec-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 15.5px;
}

/* ---------- PRODUCTS ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.prod-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px 20px;
  position: relative;
  border: 2px dashed rgba(11, 77, 51, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.prod-card::before,
.prod-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.prod-card::before {
  left: -11px;
}
.prod-card::after {
  right: -11px;
}
.badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--coral);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transform: rotate(4deg);
}
.prod-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #ffffff;
}
.prod-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  min-height: 38px;
  line-height: 1.3;
}
.prod-card .old {
  font-size: 12px;
  color: #a9a9a9;
  text-decoration: line-through;
  margin-top: 8px;
}
.prod-card .price {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  margin-top: 2px;
}
.prod-card .price span {
  font-size: 12px;
  vertical-align: top;
}
.prod-buy {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-deep);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 30px;
  transition: background 0.2s;
}
.prod-buy:hover {
  background: var(--coral);
}

/* ---------- LOJAS ---------- */
.lojas {
  background: var(--green-soft);
}
.loja-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.loja-card {
  background: #d7e8f1;
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  overflow: hidden;
  transition: 0.3s;
}
.loja-card:hover {
  transform: translateY(-8px);
}
.loja-imagem-container {
  flex-shrink: 0;
  width: 220px;
}
.loja-imagem-container img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
}
.loja-num {
  font-family: "Archivo Black";
  font-size: 34px;
  color: var(--lime);
  -webkit-text-stroke: 2px var(--green-deep);
  margin-bottom: 5px;
}
.loja-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loja-info h3 {
  font-size: 18px;
  color: #d90012;
  margin-bottom: 10px;
}
.loja-info p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 15px;
}
.loja-card .tag {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.loja-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.loja-btn {
  display: inline-block;
  background: #cf0303;
  color: white;
  padding: 12px 15px;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
}
.loja-btn:hover {
  background: #d9fd0d;
  color: #cf0303;
}

/* ---------- CONTATO / CTA FINAL ---------- */
.cta-final {
  background: var(--green-deep);
  border-radius: 28px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(212, 241, 68, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(212, 241, 68, 0.14),
      transparent 40%
    );
}
.cta-final h2 {
  position: relative;
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}
.cta-final p {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 30px;
  font-size: 15px;
}
.cta-final .btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-light {
  background: #13aa1a;
  color: var(--gren-text);
}
.btn-light:hover {
  background: var(--lime);
  transform: translateY(-3px);
}
.btn-ghost-w {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- FOOTER ---------- */
footer {
  padding: 50px 0 30px;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 2px dashed rgba(11, 77, 51, 0.2);
  padding-bottom: 30px;
}
.foot-col h4 {
  font-size: 13px;
  color: var(--green-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.foot-col p,
.foot-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.foot-col a:hover {
  color: var(--coral);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- FLOAT WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa {
    animation: none;
  }
}

/* ========================================= */
/* ---------- RESPONSIVO (CELULAR) --------- */
/* ========================================= */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stamp-wrap {
    order: -1;
    margin-bottom: 10px;
  }
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .loja-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* HEADER & MENU MOBILE */
  .menu-toggle {
    display: block;
  }
  .nav {
    padding: 5px 15px;
  }
  .logo img {
    width: 140px;
    height: auto;
  }
  .nav-cta {
    width: auto;
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
    margin-left: auto;
    margin-right: 15px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #e92020;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-links a {
    margin: 5px 0;
    font-size: 16px;
  }
  .nav-links.ativo {
    display: flex;
  }

  /* HERO MOBILE */
  .hero-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .stamp-wrap {
    max-width: 350px;
    margin: 0 auto;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas a {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* LOJAS MOBILE */
  .loja-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }
  .loja-imagem-container {
    width: 100%;
  }
  .loja-imagem-container img {
    height: 180px; /* Reduz a altura da foto no celular */
  }
  .loja-info {
    padding: 15px 0 0 0;
  }
  .loja-botoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
  }
  .loja-btn {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .strip .wrap {
    flex-direction: column;
  }
  .cta-final {
    padding: 40px 22px;
  }
}
