:root {
  --green: #00b45a;
  --green-dark: #063f28;
  --yellow: #ffd32a;
  --gold: #ffb703;
  --blue: #0667ff;
  --white: #ffffff;
  --dark: #07140f;
  --dark-2: #0b2518;
  --muted: #c8d8d0;
  --card: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(0, 180, 90, 0.35), transparent 35%),
              radial-gradient(circle at 90% 10%, rgba(255, 211, 42, 0.25), transparent 30%),
              var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 85%);
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 20, 15, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-ball {
  color: var(--yellow);
  filter: drop-shadow(0 0 18px rgba(255, 211, 42, .85));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  transition: .25s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  color: var(--white);
  background: var(--card);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.3rem;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #18210b;
  box-shadow: 0 16px 36px rgba(255, 183, 3, 0.38), inset 0 -2px 0 rgba(0,0,0,.15);
}

.btn-primary:hover {
  box-shadow: 0 24px 52px rgba(255, 183, 3, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-small {
  padding: 11px 16px;
  color: #17200c;
  background: var(--yellow);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--yellow);
  background: rgba(255, 211, 42, 0.12);
  border: 1px solid rgba(255, 211, 42, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: .88;
  letter-spacing: -0.08em;
  margin-bottom: 22px;
}

.hero-subtitle,
.section-heading p,
.promo-box p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 660px;
}

.price-card {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 16px 20px;
  margin: 28px 0;
  padding: 18px 20px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price-card > div:not(.mini-countdown) {
  display: grid;
  gap: 2px;
  min-width: 168px;
}

.price-card::after,
.promo-box::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-80%) rotate(20deg);
  animation: shine 3.2s infinite;
}

.old-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: line-through;
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
  min-width: 82px;
}

.price-label {
  display: block;
  color: rgba(255,255,255,.74);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
}

.new-price {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  color: var(--yellow);
  line-height: .95;
  white-space: nowrap;
  filter: drop-shadow(0 0 16px rgba(255, 211, 42, .65));
}

.promo-badge {
  background: #ff334e;
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .8rem;
  transform: rotate(-3deg);
}

.hero-actions,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-badges {
  margin-top: 26px;
}

.trust-badges span {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: .9rem;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.product-mockup {
  width: min(470px, 100%);
  min-height: 560px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  cursor: pointer;
}

.mockup-header {
  display: flex;
  gap: 8px;
  padding: 8px 4px 18px;
}

.mockup-header span {
  width: 13px;
  height: 13px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
}

.mockup-body {
  background: linear-gradient(180deg, #f8fff7, #dfffe5);
  color: #0e2d1f;
  border-radius: 28px;
  min-height: 490px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.placeholder-image,
.preview-card,
.sticker-card,
.modal-placeholder {
  border: 2px dashed rgba(6, 103, 255, .38);
  background:
    linear-gradient(135deg, rgba(6,103,255,.13), rgba(0,180,90,.15)),
    repeating-linear-gradient(45deg, rgba(0,0,0,.03) 0 10px, transparent 10px 20px);
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.placeholder-image {
  min-height: 340px;
}

.placeholder-image span,
.preview-card span,
.sticker-card span {
  font-weight: 900;
  font-size: 1.25rem;
}

.placeholder-image small,
.preview-card small,
.sticker-card small {
  display: block;
  opacity: .7;
  font-weight: 700;
  margin-top: 6px;
}

.sticker-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sticker-row div {
  background: white;
  border-radius: 16px;
  padding: 18px 8px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 15px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.card-top { top: 40px; left: 0; animation: float 4s ease-in-out infinite; }
.card-bottom { bottom: 35px; right: 0; animation: float 4s ease-in-out infinite reverse; }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2,
.promo-box h2,
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

.section-heading p {
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.testimonial,
.benefit,
.step {
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.feature-card {
  font-size: 2rem;
  min-height: 230px;
}

.feature-card h3,
.step h3 {
  font-size: 1.2rem;
  margin: 14px 0 8px;
}

.feature-card p,
.step p,
.testimonial span,
.faq-list p {
  color: var(--muted);
}

.dark-section {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,180,90,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #13200c;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 211, 42, .55);
}

.carousel-section {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-content {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.sticker-card {
  width: 210px;
  height: 260px;
  flex: 0 0 auto;
  color: #0d2d1e;
  background-color: #f3fff5;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  transition: .3s;
}

.sticker-card:hover,
.preview-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.promo-section {
  padding-top: 30px;
}

.promo-box {
  border-radius: 36px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,211,42,.32), transparent 30%),
    linear-gradient(135deg, rgba(0,180,90,.95), rgba(6,103,255,.8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.promo-box strong {
  color: var(--yellow);
  filter: drop-shadow(0 0 16px rgba(255,211,42,.6));
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit {
  font-weight: 900;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.preview-card {
  min-height: 230px;
  color: #0d2d1e;
  cursor: pointer;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial {
  font-size: 1.02rem;
  font-weight: 800;
}

.testimonial span {
  display: block;
  margin-top: 18px;
  font-size: .9rem;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  background: rgba(255,255,255,.09);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--yellow);
}

details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 12px;
}

.final-cta {
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 211, 42, .25), transparent 35%);
}

.final-cta p {
  margin: 0 auto 24px;
}

.site-footer {
  padding: 44px 0 88px;
  background: #04100b;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.site-footer p,
.disclaimer {
  color: var(--muted);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 700;
}

.disclaimer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  font-size: .88rem;
}

.mobile-buy {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #18210b;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  padding: 16px;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}

.modal-box {
  position: relative;
  width: min(520px, 100%);
  background: #ffffff;
  color: #082316;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #07140f;
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
}

.modal-placeholder {
  min-height: 260px;
  margin-bottom: 18px;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,211,42,.16), transparent 62%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.stadium-light {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.17), transparent 62%);
  filter: blur(8px);
}

.light-one { top: 80px; left: -180px; }
.light-two { bottom: 20px; right: -180px; }

.confetti {
  position: absolute;
  width: 12px;
  height: 34px;
  border-radius: 10px;
  opacity: .65;
  animation: confetti 6s ease-in-out infinite;
}

.confetti-a { background: var(--yellow); top: 18%; left: 58%; }
.confetti-b { background: var(--blue); top: 32%; left: 82%; animation-delay: 1.2s; }
.confetti-c { background: var(--green); top: 70%; left: 44%; animation-delay: 2.1s; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shine {
  0% { transform: translateX(-90%) rotate(20deg); }
  55%, 100% { transform: translateX(90%) rotate(20deg); }
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes confetti {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(60px) rotate(220deg); }
}

@media (max-width: 1080px) {
  .cards-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps,
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7,20,15,.96);
    border: 1px solid var(--border);
  }
  .nav-links.active {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-visual {
    min-height: 500px;
  }
  .product-mockup {
    min-height: 480px;
  }
  .mockup-body {
    min-height: 410px;
  }
  .placeholder-image {
    min-height: 270px;
  }
  .promo-box,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-buy {
    display: block;
  }
  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 0;
  }
  .cards-grid,
  .testimonials-grid,
  .steps,
  .preview-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .price-card {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .price-card > div:not(.mini-countdown) {
    min-width: 0;
  }
  .old-price {
    justify-content: flex-start;
  }
  .promo-badge {
    justify-self: start;
  }
  .mini-countdown {
    grid-column: 1;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-badges span {
    width: 100%;
  }
  .floating-card {
    display: none;
  }
  .sticker-card {
    width: 180px;
    height: 230px;
  }
}


/* ===== Seção de depoimentos atualizada ===== */
.testimonials-section {
  background: radial-gradient(circle at 10% 10%, rgba(255, 211, 42, .12), transparent 28%),
              radial-gradient(circle at 90% 20%, rgba(6, 103, 255, .14), transparent 30%);
}

.testimonials-section .section-heading p {
  max-width: 760px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22);
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -26px;
  right: 22px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 211, 42, .16);
  font-weight: 900;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.customer-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.3);
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  box-shadow: inset 0 0 28px rgba(255,255,255,.08), 0 12px 28px rgba(0,0,0,.22);
  overflow: hidden;
}

.customer-name {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  letter-spacing: -.02em;
}

.stars {
  color: var(--yellow);
  letter-spacing: 2px;
  filter: drop-shadow(0 0 10px rgba(255, 211, 42, .45));
  font-size: .95rem;
  margin-top: 2px;
}

.verified-badge {
  width: fit-content;
  color: #10210c;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 183, 3, .22);
}

.testimonial p {
  color: rgba(255,255,255,.9);
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.testimonial-note {
  margin: 22px auto 0;
  max-width: 780px;
  color: rgba(255,255,255,.62);
  text-align: center;
  font-size: .88rem;
}

@media (max-width: 1080px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .testimonial {
    min-height: auto;
  }

  .customer-photo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

/* ===== Timer, prova social e avaliações interativas ===== */
.mini-countdown {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 211, 42, .14);
  border: 1px solid rgba(255, 211, 42, .32);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  text-align: center;
}

.mini-countdown strong,
.countdown-card strong {
  color: var(--yellow);
  filter: drop-shadow(0 0 12px rgba(255,211,42,.55));
}

.countdown-card {
  width: min(360px, 100%);
  margin-top: 18px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 0 40px rgba(255,255,255,.05);
  display: grid;
  gap: 6px;
}

.countdown-card span,
.countdown-card small {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.countdown-card strong {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.social-proof-section {
  background: radial-gradient(circle at 82% 14%, rgba(255, 211, 42, .12), transparent 30%),
              radial-gradient(circle at 14% 80%, rgba(4, 180, 107, .13), transparent 35%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.stat-card strong {
  color: var(--yellow);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(255,211,42,.35));
}

.stat-card span {
  color: rgba(255,255,255,.82);
  font-weight: 900;
}

.rating-box {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(16px);
}

.rating-box h3 {
  margin-top: 6px;
}

.rating-box p,
.rating-box small {
  color: rgba(255,255,255,.72);
}

.rating-widget {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.rating-widget button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.3);
  font-size: clamp(2rem, 4vw, 3rem);
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, filter .2s ease;
}

.rating-widget button:hover,
.rating-widget button.active,
.rating-widget button.hovered {
  color: var(--yellow);
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 0 14px rgba(255,211,42,.5));
}

.customer-city {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  font-weight: 800;
  margin-top: 2px;
}

.purchase-notifications {
  position: fixed;
  left: 18px;
  bottom: 92px;
  z-index: 80;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.purchase-toast {
  width: min(340px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn .45s ease both;
}

.purchase-toast.hide {
  animation: toastOut .35s ease both;
}

.toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #10210c;
  font-weight: 900;
  flex: 0 0 42px;
}

.toast-text strong {
  display: block;
  color: white;
  font-size: .92rem;
}

.toast-text span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 700;
  margin-top: 2px;
}

.toast-text small {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  margin-top: 3px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-18px) translateY(10px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateX(-18px) translateY(8px); }
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .purchase-notifications {
    left: 12px;
    right: 12px;
    bottom: 86px;
  }
}


/* ===== Popup promocional de entrada ===== */
.entry-promo {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.entry-promo.active {
  display: flex;
}

.entry-promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 18, .68);
  backdrop-filter: blur(10px);
}

.entry-promo-box {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 38px);
  border-radius: 34px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 211, 42, .28), transparent 38%),
              linear-gradient(145deg, rgba(10, 45, 28, .88), rgba(2, 11, 23, .94));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 35px 90px rgba(0,0,0,.46), inset 0 0 55px rgba(255,255,255,.06);
  text-align: center;
  animation: promoPop .34s ease both;
}

.entry-promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
}

.entry-promo-kicker {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 211, 42, .16);
  border: 1px solid rgba(255, 211, 42, .34);
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 14px;
}

.entry-promo-box h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 12px;
}

.entry-promo-box p,
.entry-promo-box small {
  color: rgba(255,255,255,.75);
  font-weight: 750;
}

.entry-promo-price {
  margin: 18px auto 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}

.entry-promo-price span {
  display: block;
  color: rgba(255,255,255,.68);
  font-weight: 900;
}

.entry-promo-price strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: -.07em;
  filter: drop-shadow(0 0 20px rgba(255,211,42,.45));
}

.entry-promo-timer {
  margin: 0 auto 18px;
  color: white;
  font-weight: 900;
}

.entry-promo-timer strong {
  color: var(--yellow);
}

.entry-promo-buy {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.customer-photo { display: none !important; }

@keyframes promoPop {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== IMAGENS ADICIONADAS - PASTA foto/ ===== */
.has-image,
.image-sticker,
.image-preview,
.player-card {
  overflow: hidden;
  position: relative;
  border-style: solid;
  border-color: rgba(255,255,255,.24);
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.07));
  backdrop-filter: blur(14px);
}

.site-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  filter: saturate(1.08) contrast(1.04);
}

.placeholder-image.has-image {
  padding: 10px;
  gap: 10px;
}

.placeholder-image.has-image .site-image {
  min-height: 270px;
  max-height: 360px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}

.image-sticker,
.image-preview {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.image-sticker .site-image,
.image-preview .site-image {
  position: absolute;
  inset: 10px 10px 72px;
  width: calc(100% - 20px);
  height: calc(100% - 82px);
  border-radius: 18px;
}

.image-sticker span,
.image-preview span,
.image-sticker small,
.image-preview small {
  position: relative;
  z-index: 2;
}

.image-sticker::after,
.image-preview::after,
.player-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4,20,14,.82));
  pointer-events: none;
}

.image-sticker span,
.image-sticker small,
.image-preview span,
.image-preview small {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.players-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,211,42,.12), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(0,180,90,.13), transparent 30%);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.player-card {
  min-height: 390px;
  border-radius: 28px;
  padding: 14px;
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.player-card .site-image {
  height: 250px;
  border-radius: 22px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.08);
}

.player-card h3,
.player-card p {
  position: relative;
  z-index: 2;
}

.player-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.player-card p {
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  font-weight: 700;
}

.modal-placeholder.has-modal-image {
  padding: 10px;
  border-style: solid;
  background: rgba(255,255,255,.08);
}

.modal-placeholder.has-modal-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  background: rgba(255,255,255,.06);
}

.image-error {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.8);
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: 18px;
  padding: 16px;
}

@media (max-width: 980px) {
  .players-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .players-grid { grid-template-columns: 1fr; }
  .player-card { min-height: 360px; }
  .player-card .site-image { height: 230px; }
}


/* Otimização: reduz efeitos pesados em celulares e para usuários com redução de movimento */
@media (pointer: coarse) {
  .cursor-glow { display: none !important; }
  .tilt-card { transform: none !important; }
  .purchase-toast { backdrop-filter: blur(8px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-glow { display: none !important; }
}
