* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f0f2f5;
  color: rgb(255, 24, 24);
  -webkit-font-smoothing: antialiased;
}

#root {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 480px;
  background-color: #fff;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

header {
  border-bottom: 1px solid rgb(226, 232, 240);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  height: 32px;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgb(203, 213, 224);
  margin: 0 4px;
}

.brand-text {
  font-weight: 900;
  font-size: 1.2rem;
  color: rgb(45, 55, 72);
  letter-spacing: -0.5px;
}
.text-xs.font-medium.text-text-title { color: rgb(45, 55, 72); }
.icon-circle {
  padding: 6px;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-circle:hover {
  background: #f7fafc;
  transform: scale(1.05);
}

.banner-wrapper {
  padding: 1rem 1rem 0;
}

.banner-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px;
  cursor: grab;
  background: #fff;
  transition: transform 0.3s ease;
}

.banner-slider:active {
  cursor: grabbing;
}

.banner-slider:hover {
  transform: scale(1);
}

.hero-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  user-select: none;
  touch-action: pan-y;
  z-index: 1;
  transform: scale(1) !important;
  transition: opacity 0.5s ease;
}

.hero-banner.active {
  opacity: 1;
  z-index: 2;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
  cursor: pointer;
}

.dot.active {
  width: 24px;
  background: rgb(255, 205, 0);
}

.stats-section {
  padding: 1rem;
  background: rgb(247, 250, 252);
}

.stats-bar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.stats-bar::-webkit-scrollbar {
  display: none;
}

.stat-card {
  background: white;
  padding: 10px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 6px;
  min-width: 130px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.stat-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrapper.bg-green {
  background: rgb(240, 255, 244);
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgb(198, 246, 213);
}

.stat-icon-wrapper.bg-green img {
  width: 16px;
}

.stat-icon-wrapper.bg-blue {
  background: rgb(235, 248, 255);
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgb(190, 227, 248);
}

.stat-icon-wrapper.bg-red {
  background: rgb(255, 245, 245);
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgb(254, 215, 215);
}

.status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: rgb(56, 161, 105);
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7); }
  70% { box-shadow: 0 0 0 4px rgba(56, 161, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 161, 105, 0); }
}

.stat-label {
  font-size: 0.55rem;
  font-weight: 800;
  color: rgb(160, 174, 192);
  text-transform: uppercase;
}

.stat-value {
  font-size: 0.75rem;
  font-weight: 900;
  color: rgb(26, 32, 44);
}

.stat-value span {
  font-size: 0.6rem;
  color: rgb(113, 128, 150);
  font-weight: 600;
}

.content-section {
  flex: 1;
}

.section-title {
  padding: 1.5rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.step-number {
  background: rgb(255, 24, 24);
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.step-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgb(255, 24, 24);
}

.id-input-wrapper {
  padding: 0 1rem;
  display: flex;
  gap: 8px;
}

.id-input {
  flex: 1;
  padding: 0 1rem;
  height: 48px;
  border: 2px solid rgb(226, 232, 240);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: black;
  outline: none;
  transition: all 0.2s ease;
}

.id-input:focus {
  border-color: rgb(56, 161, 105);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.verify-btn {
  height: 48px;
  padding: 0 1.5rem;
  background: rgb(56, 161, 105);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.verify-btn:disabled {
  background: rgb(203, 213, 224);
  cursor: not-allowed;
}

.verify-btn:not(:disabled):hover {
  background: rgb(46, 133, 86);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.2);
}

.verify-btn:not(:disabled):active {
  transform: translateY(0);
}

.step-2 {
  scroll-margin-top: 80px;
  justify-content: space-between;
}

.promo-badge {
  background: rgb(255, 24, 24);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 24, 24, 0.4); }
  70% { box-shadow: 0 0 0 4px rgba(255, 24, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 24, 24, 0); }
}

.diamond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 1rem;
  opacity: 0.6;
  pointer-events: none; /* Disabled until ID is verified */
  transition: opacity 0.3s ease;
}

.diamond-grid.active {
  opacity: 1;
  pointer-events: auto;
}

.diamond-card {
  position: relative;
  background: white;
  border: 2px solid rgb(226, 232, 240);
  border-radius: 16px;
  padding: 1.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.diamond-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: rgb(203, 213, 224);
}

.diamond-card.selected {
  border-color: rgb(255, 24, 24);
  background: rgb(255, 245, 245);
  box-shadow: rgba(255, 24, 24, 0.1) 0px 0px 0px 2px;
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  top: -10px;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: white;
}

  .banner-wrapper {
    padding: 0.5rem;
  }

  .banner-slider {
    aspect-ratio: 16 / 9;
  }

  .hero-banner {
    object-fit: cover;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  @media (max-width: 480px) {
    .banner-wrapper {
      padding: 0.5rem;
    }
    .banner-slider {
      aspect-ratio: 4 / 3;
    }
    .dot {
      width: 5px;
      height: 5px;
    }
  }
.badge-oferta { background: rgb(221, 107, 32); }
.badge-melhor { background: rgb(56, 161, 105); }
.badge-elite { background: rgb(255, 24, 24); }

.diamond-icon {
  width: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.diamond-card:hover .diamond-icon {
  transform: scale(1.1);
}

.diamond-amount {
  font-weight: 900;
  font-size: 1.2rem;
  color: rgb(26, 32, 44);
}

.bonus-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgb(56, 161, 105);
  margin-bottom: 8px;
}

.price-box {
  background: rgb(247, 250, 252);
  width: 100%;
  text-align: center;
  padding: 6px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  color: rgb(45, 55, 72);
  transition: background 0.2s ease, color 0.2s ease;
}

.diamond-card.selected .price-box {
  background: rgb(255, 24, 24);
  color: white;
}

.title-exclusive {
  padding-bottom: 0.5rem;
}

.highlight-red {
  color: rgb(255, 24, 24);
  display: flex;
  align-items: center;
  gap: 6px;
}

.special-offer {
  margin: 0 1rem 1rem;
  border: 2px solid rgb(226, 232, 240);
  background: white;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  padding: 1.25rem 1rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.2s ease;
}

.special-offer.active {
  opacity: 1;
  pointer-events: auto;
}

.special-offer.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.special-offer.selected {
  border-color: rgb(255, 24, 24);
  background: rgb(255, 245, 245);
}

.recommend-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: rgb(255, 24, 24);
  color: white;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: rgba(255, 24, 24, 0.3) 0px 2px 6px;
}

.offer-img {
  width: 64px;
  border-radius: 8px;
}

.offer-details h4 {
  font-weight: 900;
  font-size: 0.9rem;
  color: rgb(255, 24, 24);
}

.offer-details p {
  font-size: 0.7rem;
  color: rgb(113, 128, 150);
  margin-bottom: 4px;
}

.price-red {
  font-weight: 900;
  color: rgb(255, 24, 24);
  font-size: 1.1rem;
}

.circle-check {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 2px solid rgb(203, 213, 224);
  border-radius: 50%;
  background: rgb(247, 250, 252);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.special-offer.selected .circle-check {
  background: rgb(255, 24, 24);
  border-color: rgb(255, 24, 24);
}

.special-offer.selected .circle-check::after {
  content: '✓';
  color: white;
  font-weight: bold;
}

.highlight-red-dark {
  color: rgb(229, 62, 62);
  display: flex;
  align-items: center;
  gap: 6px;
}

.limited-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 1rem;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}

.limited-offers.active {
  opacity: 1;
  pointer-events: auto;
}

.limited-card {
  padding: 0.75rem;
  border: 2px solid rgb(226, 232, 240);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 4px;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}

.limited-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.limited-card.selected {
  border-color: rgb(255, 24, 24);
  background: rgb(255, 245, 245);
}

.circle-check-small {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 2px solid rgb(203, 213, 224);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  transition: 0.2s;
}

.limited-card.selected .circle-check-small {
  background: rgb(255, 24, 24);
  border-color: rgb(255, 24, 24);
}

.limited-card.selected .circle-check-small::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.limited-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.limited-card:hover img {
  transform: scale(1.05);
}

.offer-name {
  font-weight: 800;
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.2;
}

.price-box.light {
  text-align: center;
  margin-top: auto;
  background: rgb(237, 242, 247);
  color: inherit;
}

.limited-card.selected .price-box.light {
  background: rgb(255, 24, 24);
  color: white;
}

.banners-footer {
  padding: 1rem;
}

.promo-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: transform 0.3s ease;
}
.promo-img:hover {
  transform: scale(1.02);
}

.battle-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: transform 0.3s ease;
}
.battle-img:hover {
  transform: scale(1.02);
}

.security-banners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.security-card:hover {
  transform: translateY(-4px);
}

.card-red {
  background: rgb(255, 24, 24);
  box-shadow: rgba(255, 24, 24, 0.3) 0px 4px 15px;
}

.icon-bg-white {
  background: white;
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;
}

.card-red .sec-title {
  font-weight: 900;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-red p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
}

.card-gray {
  border: 1px solid rgb(226, 232, 240);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 15px;
  background: white;
}

.icon-bg-green {
  background: rgb(240, 255, 244);
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
  border: 1px solid rgb(198, 246, 213);
}

.card-gray .sec-title {
  font-weight: 900;
  font-size: 0.9rem;
  color: rgb(45, 55, 72);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-gray p {
  font-size: 0.7rem;
  color: rgb(113, 128, 150);
}

.footer-stats {
  text-align: center;
  padding: 1rem 1rem 8rem;
  border-top: 1px solid rgb(237, 242, 247);
  background: white;
}

.big-number {
  font-weight: 900;
  font-size: 1.5rem;
  color: rgb(45, 55, 72);
}

.stat-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(74, 85, 104);
}

.footer-stats p {
  font-size: 0.7rem;
  color: rgb(160, 174, 192);
  margin-top: 0.5rem;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: white;
  padding: 1rem;
  border-top: 1px solid rgb(226, 232, 240);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-bar.visible {
  transform: translateY(0);
}

.selected-info {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.6rem;
  color: rgb(113, 128, 150);
  font-weight: 700;
  text-transform: uppercase;
}

.info-item {
  font-weight: 900;
  font-size: 0.85rem;
  color: rgb(255, 24, 24);
}

.info-price {
  font-weight: 900;
  color: rgb(255, 24, 24);
  font-size: 1.1rem;
  margin-top: 4px;
}

.buy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgb(255, 24, 24);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0 1.5rem;
  font-weight: 900;
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 48px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 24, 24, 0.3);
}

.buy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgb(203, 213, 224);
  box-shadow: none;
}

.buy-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 24, 24, 0.4);
  background: rgb(229, 62, 62);
}

.buy-btn:not(:disabled):active {
  transform: translateY(0);
}
