:root {
  --incrivel-bg: #f1f1f1;
  --incrivel-border: #d1d1d1;
  --incrivel-bgColor: #323232;
  --incrivel-bgLink: #202020;
  --incrivel-bgLinkHover: var(--incrivel-primaria);
  --incrivel-rgba: 255, 255, 255;
  --incrivel-rgbaInvert: 0, 0, 0;
  --incrivel-formBg: #fff;
  --incrivel-formBgHover: #d9d9d9;
  --incrivel-formBgHoverColor: #545454;
  --incrivel-formBorder: #c9c9c9;
  --incrivel-formColor: #5a5a5a;
  --incrivel-cardBg: #fff;
  --incrivel-cardColor: #171717;
  --incrivel-cardLink: #000;
  --incrivel-modalBg: #fff;
  --incrivel-modalBorder: #eee;
  --incrivel-modalColor: #333;
  --incrivel-primaria: #000;
  --incrivel-primariaColor: #cfcfcf;
  --incrivel-primariaLink: #fff;
  --incrivel-primariaLinkHover: #fff;
  --incrivel-primariaDarken: #e4e4e4;
  --incrivel-primariaDarkenColor: #323232;
  --incrivel-primariaDarkenLink: #fff;
  --incrivel-primariaDarkenLinkHover: #fff;
}

/* ===== LOOP DE GANHADORES - VERSÃO LIMPA E FUNCIONAL ===== */
.logoloop {
  position: relative;
  overflow: hidden;
  --logoloop-gap: 32px;
  --logoloop-fadeColorAuto: #ffffff;
}

@media (prefers-color-scheme: dark) {
  .logoloop {
    --logoloop-fadeColorAuto: #0b0b0b;
  }
}

/* Container principal */
.logoloop--one-row {
  width: 100%;
  overflow: hidden;
  height: 100px;
}

.logoloop__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: max-content !important;
  height: 100px !important;
  align-items: center !important;
  will-change: transform;
  user-select: none;
}

.logoloop__list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  white-space: nowrap !important;
  height: 100px !important;
  width: max-content !important;
}

.logoloop__item {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  flex-direction: row !important;
  margin-right: var(--logoloop-gap) !important;
  white-space: nowrap !important;
  height: 100px !important;
  width: auto !important;
  align-items: center !important;
}

.logoloop__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

/* Efeito hover */
.logoloop--scale-hover .logoloop__item:hover img,
.logoloop--scale-hover .logoloop__item:hover .logoloop__node {
  transform: scale(1.06);
  transform-origin: center center;
  transition: transform .25s ease;
}

/* Fade nas bordas - REMOVIDO para eliminar bordas pretas */

/* Container do ganhador - SOBRESCREVE NOVOLAYOUT.CSS */
.ganhadorItem_ganhadorContainer__1Sbxm {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--bg-card, rgba(255, 255, 255, .04)) !important;
  border-radius: 9999px !important;
  padding: 6px 10px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  min-width: max-content !important;
  border: none !important;
  outline: none !important;
  max-width: none !important;
  width: auto !important;
}




/* ===== LOOP DE NÚMEROS - VERSÃO LIMPA ===== */
.numbers-loop.logoloop {
  --logoloop-gap: 14px;
}

.numbers-loop .logoloop--one-row {
  height: 60px;
}

.numbers-loop .logoloop__track,
.numbers-loop .logoloop__list,
.numbers-loop .logoloop__item {
  height: 60px;
}

/* Chips de números */
.chip-number {
  min-width: 56px;
  height: 38px;
  padding: 0 16px;
  border-radius: 9999px;
  border: 0;
  background: #fff;
  color: #111;
  font-weight: 800;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.chip-number--green {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
}

.chip-number--green:hover {
  transform: translateY(-1px);
  background: #12833d;
}

.chip-number--green:active {
  transform: translateY(0);
  background: #12833d;
}

/* Separador para números */
.numbers-loop .logoloop__item {
  position: relative;
}

.numbers-loop .logoloop__item+.logoloop__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56%;
  background: rgba(0, 0, 0, .08);
  border-radius: 1px;
}

@media (prefers-color-scheme: dark) {
  .chip-number {
    background: #1b1b1b;
    color: #f6f6f6;
  }

  .chip-number--green {
    background: #16a34a;
    color: #fff;
  }

  .logoloop__item+.logoloop__item::before {
    background: rgba(255, 255, 255, .10);
  }

  .numbers-loop .logoloop__item+.logoloop__item::before {
    background: rgba(255, 255, 255, .12);
  }
}

/* Animação de destaque */
@keyframes blink2 {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(0, 200, 80, .25);
  }
}

.blink {
  animation: blink2 1s ease 2;
}

/* ===== NOVA SEÇÃO HERO - INCENTIVO À COMPRA ===== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-star {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  opacity: 0.8;
}

.hero-star-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-star-2 {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}

.hero-star-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 1s;
}

.hero-star-4 {
  bottom: 20%;
  right: 25%;
  animation-delay: 1.5s;
}

.hero-star-5 {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInDown 1s ease-out;
}

.hero-subtitle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-stats {
  animation: slideInUp 1s ease-out 0.6s both;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.hero-cta {
  animation: slideInUp 1s ease-out 0.9s both;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade da seção hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-star {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .hero-section {
    padding: 2rem 1rem !important;
  }
}

/* ===== SEÇÃO DE GANHADORES MELHORADA ===== */
.winners-section {
  border: 1px solid #e9ecef;
  transition: box-shadow 0.3s ease;
}

.winners-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.winners-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
}

.winners-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Lista de ganhadores com scroll horizontal */
.winners-list-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
  margin-top: 20px;
}

.winners-scroll {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  min-width: max-content;
}

.winners-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 200px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.winners-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-color: #007bff;
}

.winner-avatar {
  flex-shrink: 0;
}

.winner-avatar img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid #007bff;
}

.winner-info {
  flex: 1;
  min-width: 0;
}

.winner-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #2c3e50;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-prize {
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-badge {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Scrollbar personalizada */
.winners-list-container::-webkit-scrollbar {
  height: 6px;
}

.winners-list-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.winners-list-container::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 3px;
}

.winners-list-container::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
  .winners-title {
    font-size: 1.5rem;
  }

  .winners-item {
    min-width: 180px;
    padding: 10px 12px;
  }

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

  .winner-prize {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .winners-section {
    padding: 1.5rem !important;
  }

  .winners-title {
    font-size: 1.3rem;
  }

  .winners-item {
    min-width: 160px;
    padding: 8px 10px;
    gap: 8px;
  }

  .winner-avatar img {
    width: 35px;
    height: 35px;
  }

  .stat-card {
    padding: 1rem !important;
  }

  .stat-number {
    font-size: 1.2rem;
  }
}

/* ===== NOVO ESTILO DE CARD DE GANHADORES ===== */
.winner-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 380px;
  max-width: 450px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.winner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.winner-avatar {
  margin-right: 16px;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winner-info {
  flex: 1;
  min-width: 0;
}

.winner-name {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.2 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.winner-prize,
.winner-number,
.winner-date {
  font-size: 12px !important;
  color: #444 !important;
  margin: 2px 0 !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

.winner-prize {
  font-weight: 600 !important;
  color: #2c5aa0 !important;
}

.winner-date {
  color: #666 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
}

/* Estilos específicos para desktop - FORÇA APLICAÇÃO */
@media (min-width: 1024px) {
  .winner-card {
    min-width: 420px !important;
    max-width: 480px !important;
    padding: 20px !important;
  }

  .winner-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000 !important;
  }

  .winner-prize,
  .winner-number {
    font-size: 13px !important;
    color: #444 !important;
  }

  .winner-date {
    font-size: 12px !important;
    color: #555 !important;
    font-weight: 500 !important;
  }
}

/* Estilos para telas médias (tablet) */
@media (min-width: 769px) and (max-width: 1023px) {
  .winner-card {
    min-width: 350px !important;
    max-width: 400px !important;
    padding: 16px !important;
  }

  .winner-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000 !important;
  }

  .winner-date {
    font-size: 13px !important;
    color: #555 !important;
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .winner-card {
    min-width: 280px;
    max-width: 320px;
    padding: 12px;
  }

  .avatar-placeholder {
    width: 50px;
    height: 50px;
  }

  .winner-name {
    font-size: 15px;
  }

  .winner-prize,
  .winner-number,
  .winner-date {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .winner-card {
    min-width: 260px;
    max-width: 300px;
    padding: 10px;
  }

  .avatar-placeholder {
    width: 45px;
    height: 45px;
  }

  .winner-name {
    font-size: 14px;
  }

  .winner-prize,
  .winner-number,
  .winner-date {
    font-size: 11px;
  }
}