:root {
  --bg: #edf0f4;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #06c148;
  --primary-dark: #05a83e;
  --blue: #2556d8;
  --orange: #f97316;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  background: #dfe3e8;
  color: var(--text);
  line-height: 1.4;
}

.container {
  width: min(1100px, 94%);
  margin: 0 auto;
}

.topbar {
  background: #af4748;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.topbar-content {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  display: block;
  height: 60px;
  width: auto;
}

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

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.page {
  padding: 10px 0 24px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #334155;
  color: #f8fafc;
}

.section {
  padding: 8px 0;
}

.card {
  background: var(--surface);
  border: 1px solid #dbe1eb;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
}

.shop-wrap {
  max-width: 700px;
}

.hero-banner-card {
  padding: 0;
  overflow: hidden;
  margin-bottom: 8px;
  width: 100%;
  max-width: 100%;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.hero-banner-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1f335d;
  background: #ffffff;
  border-top: 1px solid #e5eaf2;
}

.hero-banner-meta strong {
  background: #07c947;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 999px;
}

.campaign-info {
  margin-bottom: 10px;
}

.campaign-kicker {
  margin: 0;
  color: #ef4444;
  font-weight: 700;
}

.sales-status {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.sales-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.sales-head span {
  color: #166534;
  font-weight: 700;
}

.sales-bar {
  margin-top: 8px;
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.sales-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.sales-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.discount-card h3,
.quantity-card h3 {
  margin: 4px 0;
  text-align: center;
}

.discount-subtitle {
  margin: 0 0 10px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.discount-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d9e0ea;
  background: #f6f8fc;
  border-radius: 10px;
  cursor: pointer;
}

.discount-item strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.discount-item.active {
  background: #1f335d;
  color: #fde047;
  border-color: #1f335d;
}

.discount-item.test-pack {
  border-color: #16a34a;
  background: #f0fdf4;
}

.discount-item.test-pack.active {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
}

.discount-item .test-tag {
  background: #16a34a;
}

.teste-pix-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.78rem;
}

.teste-pix-hint a {
  color: #64748b;
  text-decoration: underline;
}

.teste-pix-hint a:hover {
  color: #16a34a;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 3px 7px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: bold;
}

.quantity-card {
  margin-top: 10px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.quick-btn {
  border: 1px solid #d9e0ea;
  border-radius: 10px;
  background: #f6f8fc;
  height: 42px;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}

.quick-btn.featured {
  position: relative;
}

.quick-btn.featured::before {
  content: "POPULAR";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
}

.quantity-control {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #ba3f3f;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

#increase-btn {
  justify-self: end;
}

.quantity-value {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d9e0ea;
  background: #f3f5f9;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.unlock-box {
  margin-bottom: 10px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.unlock-box strong {
  color: #9a3412;
  font-size: 0.84rem;
}

.unlock-box p {
  margin: 2px 0 0;
  color: #c2410c;
  font-size: 0.8rem;
}

.unlock-btn {
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
}

.buy-strip {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #07c947, #05ad3f);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.buy-strip span:last-child {
  font-size: 1.2rem;
}

.grid,
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.top-wrap {
  padding: 12px;
}

.live-badge {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.top-title {
  text-align: center;
  margin: 0;
  text-transform: none;
  font-size: 2.1rem;
  line-height: 1.05;
  font-weight: 800;
}

.top-subtitle {
  text-align: center;
  margin: 6px 0 10px;
  font-size: 0.78rem;
  color: #4a5b74;
  font-weight: 600;
  line-height: 1.25;
}

.top-buyers-board {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.top-buyers-line {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.top-buyers-line .buyer-card {
  flex: 1 1 0;
  min-width: 0;
}

/* compatibilidade */
.top-buyers-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.buyer-card {
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #dbe1eb;
  min-height: 105px;
}

.buyer-rank {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
}

.buyer-name {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
}

.buyer-cotas {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.buyer-prize {
  margin: 2px 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
}

.buyer-card.rank-1 {
  background: #f1ca2e;
}

.buyer-card.rank-2 {
  background: #eceff3;
}

.buyer-card.rank-3 {
  background: #cb844f;
}

.buyer-card.rank-4,
.buyer-card.rank-5,
.buyer-card.rank-6 {
  background: #2f3338;
  color: #fff;
}

.buyer-card.rank-4 .buyer-rank,
.buyer-card.rank-5 .buyer-rank,
.buyer-card.rank-6 .buyer-rank,
.buyer-card.rank-4 .buyer-prize,
.buyer-card.rank-5 .buyer-prize,
.buyer-card.rank-6 .buyer-prize {
  color: #e2e8f0;
}

.vip-row {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
}

.vip-row::after {
  content: "›";
  color: #0f172a;
  font-size: 1.2rem;
}

.winning-title {
  margin: 0 0 8px;
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 800;
}

.winning-list {
  display: grid;
  gap: 6px;
}

.winning-row {
  background: #fff;
  border: 1px solid #dbe1eb;
  border-radius: 10px;
  padding: 6px 8px;
  display: grid;
  grid-template-columns: 96px 1fr 92px;
  align-items: center;
  gap: 8px;
}

.winning-code {
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 3px 9px;
  width: fit-content;
  font-weight: 800;
  font-size: 0.72rem;
}

.winning-prize {
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.83rem;
}

.winning-status {
  justify-self: end;
  background: #16a34a;
  color: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 800;
}

.brand-panel {
  text-align: center;
  margin-top: 8px;
  padding: 20px 18px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dfe8f6;
}

.brand-sub {
  color: #3f5f8d;
  margin-top: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.brand-panel h2 {
  margin: 4px 0 2px;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f2d5c;
}

.brand-panel p {
  margin: 0;
}

.brand-panel p strong {
  color: #0b1f3f;
  font-weight: 800;
}

.info-cards .card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d2b5e;
}

.info-cards .card p {
  margin: 0;
  font-size: 0.92rem;
  color: #3c4f69;
}

.info-cards-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-highlight {
  margin-top: 8px;
  border: 1px solid #dcecff;
  background: #fcfeff;
}

.info-highlight h3,
.rules-panel h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d2b5e;
}

.info-highlight p {
  margin: 0;
  color: #1e293b;
}

.info-highlight strong {
  color: #06b453;
  font-weight: 800;
}

.rules-panel {
  margin-top: 8px;
  border: 1px solid #dce7f5;
  background: #ffffff;
}

.rules-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #1e293b;
}

.rules-panel li {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #2a3f5f;
}

.rules-note {
  margin: 8px 0 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 10px 12px;
  color: #475569;
  font-size: 0.85rem;
}

.cta-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cta-box {
  text-decoration: none;
  color: #111827;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.cta-box .cta-title {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #64748b;
}

.cta-box strong {
  font-size: 1.35rem;
  line-height: 1;
  color: #0c65ff;
  font-weight: 800;
}

.cta-box p {
  margin: 4px 0 0;
  color: #334155;
  font-size: 0.82rem;
}

.cta-box:hover {
  transform: translateY(-1px);
  border-color: #c6dafc;
  box-shadow: 0 8px 18px rgba(12, 101, 255, 0.09);
}

ul {
  margin: 0;
  padding-left: 20px;
}

.footer {
  border-top: 1px solid #d7dce7;
  padding: 18px 0;
  background: #eceff3;
}

.footer-content {
  display: grid;
  gap: 2px;
  text-align: center;
}

.footer-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #1e293b;
}

.home-wrap {
  max-width: 760px;
}

.home-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 900;
  color: #0b1f44;
}

.home-title span {
  font-size: 1rem;
  color: #4b6388;
  font-weight: 600;
}

.campaign-home-card {
  padding: 0;
  overflow: hidden;
}

.campaign-home-card img {
  width: 100%;
  display: block;
}

.campaign-home-link {
  display: block;
  line-height: 0;
}

.campaign-home-link:hover {
  opacity: 0.96;
}

.campaign-home-content {
  padding: 12px;
}

.campaign-home-content h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: #03183c;
}

.campaign-home-content p {
  margin: 0 0 10px;
  color: #2c4770;
  font-weight: 600;
}

.home-draw-line {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: #3d5275;
  text-align: center;
}

.buy-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  padding: 13px 14px;
  background: #45820f;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.home-cta-wrap {
  position: relative;
  margin-top: 6px;
  padding-top: 10px;
}

.adquira-ja-btn {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3b3b 0%, #e51c1c 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow:
    0 6px 18px rgba(229, 28, 28, 0.5),
    0 0 0 0 rgba(255, 59, 59, 0.5);
  animation: adquira-ja-blink 1.15s ease-in-out infinite;
}

.adquira-ja-btn:hover {
  color: #fff;
  filter: brightness(1.05);
}

@keyframes adquira-ja-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 8px 22px rgba(229, 28, 28, 0.45),
      0 0 0 0 rgba(255, 59, 59, 0.55);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.03);
    box-shadow:
      0 10px 28px rgba(229, 28, 28, 0.6),
      0 0 18px 6px rgba(255, 59, 59, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .adquira-ja-btn {
    animation: none;
  }
}

.home-premiados {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e3e9f2;
}

.home-premiados-head {
  margin-bottom: 14px;
}

.home-premiados-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.15;
}

.home-premiados-emoji {
  font-size: 1.45rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(255, 180, 0, 0.25));
}

.home-premiados-main {
  font-weight: 900;
  color: #0b1f44;
  letter-spacing: -0.02em;
}

.home-premiados-sub {
  font-weight: 600;
  color: #6b7f9d;
  font-size: 1.15rem;
}

.home-premiado-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d8e3f0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 55%, #f3f8f0 100%);
  box-shadow:
    0 10px 30px rgba(11, 31, 68, 0.08),
    0 2px 8px rgba(69, 130, 15, 0.06);
}

.home-premiado-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #5ca318 0%, #45820f 100%);
  border-radius: 18px 0 0 18px;
}

.home-premiado-shine {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(92, 163, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-premiado-inner {
  position: relative;
  padding: 18px 18px 18px 22px;
}

.home-premiado-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.home-premiado-avatar {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5ca318 0%, #3d6f0c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  box-shadow:
    0 6px 16px rgba(69, 130, 15, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-premiado-intro {
  flex: 1;
  min-width: 0;
}

.home-premiado-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(69, 130, 15, 0.1);
  color: #3d6f0c;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-premiado-badge::before {
  content: "✓";
  font-size: 0.72rem;
}

.home-premiado-name {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0b1f44;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.home-premiado-prize {
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #45820f;
}

.home-premiado-campaign {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(11, 31, 68, 0.04);
  border: 1px solid rgba(11, 31, 68, 0.06);
  font-size: 0.74rem;
  font-weight: 700;
  color: #3d5275;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.home-premiado-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.home-premiado-stat {
  padding: 11px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3eaf3;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.home-premiado-stat-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7f9d;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.home-premiado-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0b1f44;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.easy-box h2 {
  text-align: center;
  font-size: 2.1rem;
  margin: 4px 0 0;
  color: #0b1f44;
}

.easy-box > p {
  text-align: center;
  margin: 0 0 12px;
  color: #4f6490;
  font-weight: 600;
}

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

.easy-item h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  text-align: center;
}

.easy-item p {
  margin: 0;
  text-align: center;
  color: #415d8f;
}

.whatsapp-box {
  margin-top: 10px;
  text-align: center;
}

.whatsapp-box h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  text-transform: uppercase;
  color: #071a3f;
}

.whatsapp-btn {
  display: inline-block;
  padding: 10px 38px;
  border-radius: 10px;
  background: #05a83e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Popup Grupo VIP — abre ao entrar no site */
body.vip-modal-open {
  overflow: hidden;
}

.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.vip-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 45, 0.55);
  backdrop-filter: blur(3px);
}

.vip-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 28px 24px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e6ebf3;
  box-shadow: 0 24px 60px rgba(7, 20, 45, 0.22);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.vip-modal.is-open .vip-modal-card {
  transform: translateY(0) scale(1);
}

.vip-modal-logo {
  display: block;
  width: min(72%, 220px);
  max-height: 140px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 14px;
}

.vip-modal-title {
  margin: 0 0 10px;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0b1f44;
  letter-spacing: -0.02em;
}

.vip-modal-text {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.5;
  color: #4b6388;
  font-weight: 500;
}

.vip-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vip-modal-close {
  border: none;
  background: transparent;
  color: #6b7f9d;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 4px;
  font-family: inherit;
}

.vip-modal-close:hover {
  color: #0b1f44;
}

.vip-modal-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 240px;
  padding: 13px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #06c244 0%, #05a83e 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(5, 168, 62, 0.35);
}

.vip-modal-join svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.vip-modal-join:hover {
  color: #fff;
  filter: brightness(1.05);
}

.vip-modal-step {
  display: none;
}

.vip-modal-step.is-active {
  display: block;
}

.vip-modal-confirm-q {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1f44;
}

.vip-modal-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vip-modal-cancel,
.vip-modal-confirm-close {
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
}

.vip-modal-cancel {
  background: #fff;
  border-color: #d5dde8;
  color: #4b6388;
}

.vip-modal-cancel:hover {
  background: #f8fafc;
  color: #0b1f44;
}

.vip-modal-confirm-close {
  background: #0b1f44;
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 31, 68, 0.25);
}

.vip-modal-confirm-close:hover {
  background: #152a52;
}

@media (max-width: 480px) {
  .vip-modal-card {
    padding: 24px 18px 18px;
    border-radius: 18px;
  }

  .vip-modal-title {
    font-size: 1.5rem;
  }

  .vip-modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .vip-modal-join {
    max-width: none;
    width: 100%;
  }

  .vip-modal-close {
    align-self: center;
  }

  .vip-modal-confirm-actions {
    grid-template-columns: 1fr;
  }
}

.faq-head {
  text-align: center;
  margin: 6px 0 8px;
}

.faq-head h2 {
  margin: 0;
  font-size: 2rem;
  color: #03183c;
}

.faq-head h2 span {
  color: #d33b35;
}

.faq-head p {
  margin: 0;
  color: #4e638f;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid #dbe1eb;
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-weight: 800;
  color: #041a3f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "⌄";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #dce5f3;
  color: #17386b;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  transition: transform 120ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0 0 12px;
  color: #3f557c;
}

@media (max-width: 640px) {
  .hero-banner-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: initial !important;
    object-position: center top !important;
  }

  .topbar-content {
    height: auto;
    padding: 10px 0;
  }

  .menu {
    gap: 10px;
  }

  .discount-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .top-buyers-line {
    flex-direction: row;
  }

  .top-buyers-line .buyer-card {
    flex: 1 1 0;
  }

  .buyer-name {
    font-size: 0.85rem;
  }

  .buyer-cotas {
    font-size: 0.78rem;
  }

  .top-title {
    font-size: 1.6rem;
  }

  .winning-title {
    font-size: 1.5rem;
  }

  .info-cards-two,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .winning-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .winning-status {
    justify-self: start;
  }

  .discount-item strong {
    font-size: 1rem;
  }

  .quantity-value {
    font-size: 1.3rem;
  }

  .buy-strip {
    font-size: 1rem;
  }

  .buy-strip span:last-child {
    font-size: 1.2rem;
  }

  .home-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }

  .campaign-home-content h2 {
    font-size: 1.05rem;
  }

  .home-premiados-title {
    font-size: 1.4rem;
  }

  .home-premiado-inner {
    padding: 16px 14px 16px 18px;
  }

  .home-premiado-stats {
    grid-template-columns: 1fr;
  }

  .home-premiado-stat-value {
    font-size: 0.95rem;
  }

  .easy-box h2,
  .faq-head h2 {
    font-size: 1.5rem;
  }

  .easy-grid {
    grid-template-columns: 1fr;
  }
}

/* Meus Números */
.meus-wrap {
  max-width: 720px;
}

.meus-consulta-card,
.meus-cliente-card {
  padding: 14px;
}

.meus-consulta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.meus-consulta-head h1,
.meus-consulta-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.meus-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.meus-badge-seguro {
  background: #e8f9ee;
  color: #0c8f3c;
  border: 1px solid #c8f0d6;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.meus-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.meus-input {
  width: 100%;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  height: 42px;
  padding: 0 12px;
  font-family: inherit;
}

.meus-btn-buscar {
  margin-top: 10px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  height: 42px;
  background: #2d5de0;
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.meus-msg {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.meus-cliente-nome {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
}

.meus-cliente-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.meus-field .k {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.meus-field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meus-icon-btn {
  border: 1px solid #d6dfec;
  background: #fff;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.meus-hash {
  color: #94a3b8;
  font-weight: 700;
}

.meus-alert {
  margin: 10px 0;
  border: 1px solid #f2d089;
  background: #fffdf4;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: #334155;
}

.meus-alert p {
  margin: 0;
}

.meus-campanha-block,
.meus-campanha-card {
  margin-top: 10px;
  padding: 12px;
}

.meus-campanha-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.meus-campanha-block h3,
.meus-campanha-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.meus-pedidos-wrap {
  margin-top: 8px;
}

.meus-pedido-resumo {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.meus-pedido-resumo strong {
  color: #0f172a;
}

.dot-sep {
  margin: 0 4px;
  color: #cbd5e1;
}

.meus-banner-wrap {
  margin: 6px 0 10px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  background: #0f172a;
}

.meus-banner-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.meus-pedido-card {
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
}

.meus-pedido-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.meus-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}

.meus-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
}

.meus-status.pendente {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.meus-status.pendente i {
  background: #f97316;
}

.meus-status.pago {
  background: #e8f9ee;
  color: #0c8f3c;
  border: 1px solid #c8f0d6;
}

.meus-status.pago i {
  background: #16a34a;
}

.meus-abrir-btn {
  border: 1px solid #d6dfec;
  background: #fff;
  border-radius: 8px;
  height: 30px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: #475569;
}

.meus-pedido-ref {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

.meus-pedido-detalhes {
  margin-top: 8px;
  border-top: 1px solid #eef2f7;
  padding-top: 8px;
}

.meus-pedido-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
  font-size: 0.78rem;
}

.meus-pedido-foot span {
  display: block;
  color: #64748b;
}

.meus-numeros-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.meus-num-chip {
  background: #f1f5f9;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.meus-pendente-pay {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
}

.meus-btn-pagar {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background: #16a34a;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .meus-cliente-grid {
    grid-template-columns: 1fr;
  }

  .meus-pedido-foot {
    grid-template-columns: 1fr;
  }
}

/* —— Página Resultados (mesmo visual claro da campanha) —— */
body.resultados-page {
  background: #dfe3e8;
  color: var(--text);
}

.resultados-main {
  padding: 20px 0 40px;
  min-height: 70vh;
}

.resultados-title {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.resultados-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.resultados-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resultados-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid #d7dce7;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.resultados-card:hover {
  border-color: #b8c4d9;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.resultados-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.resultados-card-body h2 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text);
}

.resultados-card-sub {
  margin: 0 0 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.resultados-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-concluido {
  background: #e8edf5;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.badge-ativo {
  background: #e8f9ee;
  color: #0c8f3c;
  border: 1px solid #c8f0d6;
}

.badge-agendado {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fdba74;
}

.resultados-section-title {
  margin: 20px 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.resultados-card-upcoming {
  border-color: #fdba74;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
}

.resultados-card-upcoming:hover {
  border-color: #f97316;
}

.resultados-loading,
.resultados-empty {
  color: var(--muted);
  text-align: center;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px dashed #d7dce7;
}

.resultados-back {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.resultados-detail-head {
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #d7dce7;
}

.resultados-detail-banner {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg-alt);
  margin-bottom: 12px;
}

.resultados-detail-head h1 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resultados-winners-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
}

.resultados-winners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resultados-winner-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid #d7dce7;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.resultados-winner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #e8edf5;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.resultados-winner-body h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
}

.resultados-winner-prize {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.resultados-winner-num {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text);
}

.resultados-winner-body-full {
  width: 100%;
}

.resultados-draw-divider {
  margin: 16px 0 8px;
  padding: 8px 0 4px;
  border-bottom: 2px solid #e2e8f0;
}

.resultados-draw-divider:first-child {
  margin-top: 0;
}

.resultados-draw-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
}

.resultados-draw-date {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.resultados-draw-lottery {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  margin-top: 4px;
}

.resultados-draw-lottery strong {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu a.active-nav {
  text-decoration: underline;
}
