/* =========================================
   ESTILOS ESPECÍFICOS DA LANDING PAGE 
   (Premium WAS Venture Design)
   ========================================= */

:root {
  --lp-max-width: 1050px;
  --text-body: rgba(255, 255, 255, 0.75);
}

.container {
  width: 100%;
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-blue {
  color: var(--primary);
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 20px;
}

.glass-card {
  background: var(--card-glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto;
}

/* --- BARRA DE URGÊNCIA NO TOPO (ESCASSEZ) --- */
.top-urgency-bar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ef4444;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 1000;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.top-urgency-bar strong {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
  font-size: 1rem;
  color: #fff;
}

/* --- HERO SECTION REFORMULADA --- */
.hero-section {
  position: relative;
  padding: 100px 0 60px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container-mobile {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 2;
  align-items: center;
}

.hero-content-left {
  width: 65%;
  position: relative;
  z-index: 3;
}

.hero-badge-top {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero-title-gradient {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-text-block p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 15px;
  max-width: 90%;
}

.hero-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.hero-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}

.btn-hero-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  transition: transform 0.3s;
}

.btn-hero-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.pulse-animation-green {
  animation: pulse-green 3s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero-image-right {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 55%;
  height: 115%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

/* Mascara gradiente da foto no Desktop (apaga lado esquerdo) */
.hero-image-right img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.hero-image-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* --- TARGET SECTION --- */
.target-section {
  padding: 100px 0;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.target-card {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
}
.target-card:hover {
  transform: translateY(-3px);
}
.target-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.target-icon svg {
  width: 24px;
  height: 24px;
}
.target-card p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.4;
}
.target-card p strong {
  color: #fff;
}

/* --- MODULES SECTION --- */
.modules-section {
  padding: 80px 0;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.module-card {
  padding: 35px 25px;
  border-top: 3px solid transparent;
  transition: transform 0.3s ease;
}
.module-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--primary);
}
.module-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.module-icon {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.module-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.module-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* --- BONUS SECTION --- */
.bonus-section {
  padding: 80px 0;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.bonus-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(10, 30, 70, 0.6) 0%, var(--bg) 100%);
}
.badge-gold {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 6px 14px;
  font-size: 0.8rem;
  width: fit-content;
  margin-bottom: 20px;
}

/* Ajuste exclusivo para quando houver apenas 2 cartões de Bônus */
.bonus-grid.two-cards {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px; /* Impede que fiquem gigantes e esticados */
  margin: 0 auto; /* Centraliza no meio da tela */
}

.bonus-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.bonus-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 25px;
  flex-grow: 1;
}
.pricing-bonus {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 12px;
  border-left: 3px solid #22c55e;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.price-tag-crossed {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.price-tag-free {
  color: #22c55e;
  font-weight: 900;
  font-size: 1.2rem;
}

/* --- AUTHOR SECTION --- */
.author-section {
  padding: 80px 0;
}
.author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Foto maior e texto com mesmo tamanho */
  gap: 60px;
  align-items: center;
}
.author-image-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: var(--card-glass);
  border: 1px solid var(--border);
}
.author-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  transform: scale(1.1); /* 1.1 = 10% maior | 1.2 = 20% maior */
  transform-origin: center; /* Mantém ela centralizada ao crescer */
}

/* --- OFFER SECTION & GARANTIA --- */
.offer-section {
  padding: 100px 0;
}
.offer-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.premium-border {
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.15);
}
.offer-header {
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.1), transparent);
  padding: 50px 40px 30px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.badge-pulse {
  background: #ef4444;
  color: #fff;
  animation: pulse 2s infinite;
  margin-bottom: 20px;
}
.offer-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.offer-body {
  padding: 40px 60px;
  text-align: center;
}
.offer-list {
  list-style: none;
  text-align: left;
  margin: 0 auto 40px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}
.offer-list li svg {
  color: #22c55e;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.pricing-area {
  margin-bottom: 40px;
}
.new-price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}
.cash-price {
  font-size: 1.1rem;
  color: var(--text-body);
}
.btn-green {
  background: #22c55e !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3) !important;
}
.btn-green:hover {
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5) !important;
}
.btn-huge {
  display: flex;
  width: 100%;
  padding: 25px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 16px;
  margin-bottom: 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}
.secure-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #22c55e;
  font-weight: 700;
  margin-top: -5px;
  margin-bottom: 20px;
}
.garantia-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
  border-top: 1px solid var(--border);
}
.garantia-selo {
  flex-shrink: 0;
}
.garantia-selo img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(251, 191, 36, 0.2));
}
.garantia-text strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}
.garantia-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* --- FOOTER SUTIL / MINIMALISTA --- */
.footer-minimal {
  padding: 40px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}
.footer-minimal-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}
.footer-version {
  font-family: monospace;
  letter-spacing: 1px;
}

/* --- SISTEMA DE NOTIFICAÇÕES (PROVA SOCIAL) --- */
.sales-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(10, 30, 70, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.sales-notification.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.notification-icon svg {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}
.notification-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.notify-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
}
.notify-name strong {
  font-weight: 800;
  color: var(--primary);
}
.notify-action {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}
.notify-time {
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* =========================================
   RESPONSIVIDADE TOTAL (TELEMÓVEIS E TABLETS)
   ========================================= */
@media (max-width: 992px) {
  .hero-section {
    padding-top: 40px;
    min-height: auto;
  }

  .hero-container-mobile {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* 1. JOGA A FOTO PARA O TOPO NO CELULAR */
  .hero-image-right {
    order: -1;
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: -40px; /* Puxa o título para cima do degradê da foto */
    margin-top: 20px;
    z-index: 1;
  }

  /* 2. BORDA EM DEGRADÊ NA PARTE DE BAIXO DA FOTO (Celular) */
  .hero-image-right img {
    max-width: 85%;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }

  /* 3. MANTÉM O TEXTO EMBAIXO DA FOTO */
  .hero-content-left {
    order: 2;
    width: 100%;
    z-index: 3;
    position: relative;
  }

  .hero-text-block p {
    max-width: 100%;
    margin: 0 auto 15px auto;
  }
  .hero-trust-pills {
    align-items: center;
  }

  /* Ajustes das outras seções */
  .target-grid,
  .modules-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .author-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .author-content {
    align-items: center;
  }

  .offer-box {
    margin: 0 15px;
  }
  .offer-header {
    padding: 40px 20px 20px;
  }
  .offer-body {
    padding: 30px 20px;
  }

  .garantia-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .hero-title-gradient {
    font-size: 2rem;
  }
  .btn-hero-green {
    width: 100%;
    padding: 18px 20px;
  }

  .offer-title {
    font-size: 2rem;
  }
  .new-price {
    font-size: 2.8rem;
  }
  .btn-huge {
    font-size: 1.1rem;
    padding: 20px;
  }
  .offer-list li {
    font-size: 1rem;
    align-items: flex-start;
  }

  .sales-notification {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 14px 16px;
  }
}

@media (max-width: 600px) {
  .footer-minimal-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero-title-gradient {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .new-price {
    font-size: 2.2rem;
  }
}

/* =========================================
   NOVA SEÇÃO DE OFERTA (ESTILO TICKET MAX)
   ========================================= */

.ticket-offer-section {
  padding: 80px 0 120px;
  display: flex;
  justify-content: center;
}

/* Textos do Topo */
.ticket-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.title-gold {
  color: #d4af37; /* Dourado premium */
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.ticket-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* --- BARRA DE PROGRESSO ANIMADA --- */
.progress-wrapper {
  max-width: 500px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 5;
}

.progress-bar-bg {
  background: #e0e0e0;
  border-radius: 30px;
  height: 40px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  background-color: #cda24b; /* Fundo Dourado da barra */
  height: 100%;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  white-space: nowrap;
}

.progress-text {
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* Animação das listras mexendo na barra */
.animated-stripes {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 75px 75px;
  animation: move-stripes 2s linear infinite;
}

@keyframes move-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}

/* --- TICKET BRANCO --- */
.ticket-card {
  background: #ffffff;
  max-width: 500px;
  margin: -10px auto 0 auto; /* Sobe um pouco para ficar atrás da barra */
  border-radius: 24px;
  padding: 50px 40px 40px 40px;
  text-align: center;
  color: #111; /* Texto escuro pois o fundo é branco */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 4;
}

.ticket-top {
  margin-bottom: 20px;
}

.ticket-lote {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: #020814;
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.ticket-promo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 5px;
  color: #555;
  display: block;
}

.ticket-barcode {
  margin: 25px 0;
  opacity: 0.8;
}

.ticket-action-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: #020814;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Lista de entregáveis estilo check verde */
.ticket-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.ticket-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.ticket-list li:last-child {
  border-bottom: none;
}

.ticket-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Preço e Botão */
.pricing-area-ticket {
  margin-bottom: 20px;
}

.new-price-ticket {
  font-size: 2.5rem;
  font-weight: 900;
  color: #020814;
  line-height: 1;
  margin-bottom: 5px;
}

.cash-price-ticket {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}

.secure-payment-ticket {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 800;
}

/* =========================================
   BOTÃO VOLTAR PARA A HOME (COMPUTADOR)
   ========================================= */
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-back-home svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Efeito Hover: O texto fica branco e a setinha anda para a esquerda */
.btn-back-home:hover {
  color: #ffffff;
}

.btn-back-home:hover svg {
  transform: translateX(-5px);
}

/* =========================================
   RESPONSIVIDADE (CELULAR E TABLETS PEQUENOS)
   ========================================= */
@media (max-width: 768px) {
  /* Ajuste do botão de Voltar para Celular (Apenas a Setinha) */
  .btn-back-home {
    display: flex;
    position: absolute !important; /* Faz a seta flutuar solta na tela */
    top: 15px !important; /* Distância exata do teto */
    left: 20px !important; /* Distância da parede esquerda */
    z-index: 99 !important; /* Garante que ela fique POR CIMA da foto do Lucas */
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.15); /* Fundo um pouquinho mais forte */
    backdrop-filter: blur(
      5px
    ); /* Dá um efeito de vidro se passar por cima da foto */
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    color: #fff;
  }

  /* Esconde o texto no celular */
  .back-text {
    display: none;
  }

  /* Garante que o ícone fique centralizado no círculo */
  .btn-back-home svg {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  /* Força a grade de 2 cartões de bônus a empilhar no celular */
  .bonus-grid.two-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  /* Responsividade do Ticket */
  .ticket-offer-section {
    padding: 40px 15px 80px;
  }
  .title-gold {
    font-size: 1.8rem;
  }
  .ticket-card {
    padding: 50px 20px 30px 20px;
  }
  .ticket-lote {
    font-size: 2.8rem;
  }
  .ticket-promo {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }
  .new-price-ticket {
    font-size: 2.2rem;
  }
}
/* =========================================
   BOTÃO VOLTAR PARA A HOME (COMPUTADOR)
   ========================================= */
.btn-back-home {
  position: absolute; /* Tira o botão do fluxo normal e faz ele flutuar */
  top: -30px; /* Joga ele para cima do selo azul */
  left: 0; /* Alinha perfeitamente à esquerda do texto */
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-back-home svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Efeito Hover: O texto fica branco e a setinha anda para a esquerda */
.btn-back-home:hover {
  color: #ffffff;
}

.btn-back-home:hover svg {
  transform: translateX(-5px);
}
