/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #89ff02;
  --secondary-color: #89ff02;
  --accent-color: #89ff02;
  --dark-color: #0a0a0a;
  --light-color: #ffffff;
  --gray-color: #1a1a1a;
  --text-color: #ffffff;
  --text-dark: #333333;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-color);
  overflow-x: hidden;
}

/* Definição da animação "piscar" */
@keyframes pulse-neon {
  0% {
    /* Estado inicial: um brilho suave */
    box-shadow: 0 0 5px #89ff02, 0 0 5px #89ff02;
  }

  50% {
    /* Meio da animação: brilho intenso e expandido */
    box-shadow: 0 0 10px #89ff02, 0 0 10px #89ff02, 0 0 4px #89ff02;
  }

  100% {
    /* Volta ao estado inicial para um loop suave */
    box-shadow: 0 0 5px #89ff02, 0 0 5px #89ff02;
  }
}

.caixa-neon-piscando>h2 {
  color: #89ff02;
}

.caixa-neon-piscando>p {
  color: grey;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Estilos para o nosso elemento */
.caixa-neon-piscando {
  /* Propriedades para a animação */
  border: 2px solid #89ff02;
  border-radius: 12px;
  /* Bordas arredondadas */

  /* Aplicando a animação */
  /* pulse-neon: nome da animação que criamos acima */
  /* 2s: duração de um ciclo completo (2 segundos) */
  /* infinite: para a animação repetir para sempre */
  /* ease-in-out: deixa o efeito de pulsar mais suave */
  animation: pulse-neon 2s infinite ease-in-out;
  display: flex;
  margin-top: 100px;
  margin-bottom: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Estilos de exemplo para a caixa ficar visível */

  padding: 10px 10px;
  width: 350px;
  /* Fundo escuro para destacar o neon */
  color: #ffffff;
  /* Cor do texto */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--dark-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--primary-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;

  transition: var(--transition);
}

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

.nav {
  display: flex;
  gap: 2rem;
}

.image-container:nth-of-type(1) {
  margin-top: 90px;
}

.nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

#ficar-de-fora-image,
#hanz-e-big-image,
#cadastrando-agora-image {
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  text-align: center;
  height: auto;
}

/*


#iframe-container {
 //  Dimensões da área que você quer que seja visível 
  width: 300px;

  opacity: 0;
  // A propriedade mais importante: esconde tudo que transbordar 
  overflow: hidden;

  // Apenas para centralizar e estilizar, se desejar 
  margin: 50px auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}

// Estilos aplicados diretamente ao iframe //
#iframe-container iframe {
  // Largura total do container //
  width: 100%;

  // Altura TOTAL da página interna, incluindo o que será escondido //
  // Ex: 540px (visível) + 100px (header) + 80px (footer) = 720px //
  height: 720px;

  // Puxe o iframe para CIMA para esconder o cabeçalho //
  // O valor deve ser a altura exata do cabeçalho que você quer ocultar //
  margin-top: -35px;

  // Remove as bordas padrão do iframe //
  border: none;
}
*/

#iframe-container {
  margin: 20px 0px 0px 0px;
  height: 510px;
  border-radius: 12px;
  overflow: hidden !important;
  width: 300px;
}

#iframe-container iframe {
  height: 100%;
  margin-top: -30px;
  width: 100%;
}

@keyframes pulset {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

#timer-container {
  animation: pulset 2s linear infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 5px;
  align-items: center;
  text-align: center;
  background: hsl(0 85% 60% / .2);
  border: 1px solid #f04242;

  color: #f04242;
  border-radius: 8px;
}

#timer-container>h2 {
  font-size: 16px;
  line-height: 1.2em;
}

#timer-container>p {
  font-size: 13px;
  margin: 10px 0 0;
  ;
}

#timer-container-timer {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  color: white !important;
  font-weight: 700;
  font-size: 16px;
  margin: 0px 0px 10px 0px;
}

#timer-container-timer>div>p:nth-of-type(1) {
  font-size: 18px;
}

#timer-container-timer>div {
  display: flex;
  justify-content: center;
  background-color: #f04242;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
  min-height: 50px;
  min-width: 70px;
  flex-direction: column;
}

#cadastrando-agora-image {
  margin-top: 90px;
}

/* Hero Section */
.hero {
  color: transparent !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.hero-title .highlight {
  color: var(--primary-color);
  font-weight: 800;
}

.hero-title .brand {
  display: block;
  font-size: 4rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

/* Brand Logos */
.brand-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.brand-logo {
  height: 80px !important;
  width: auto;

  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.1);
}

.brand-arrow {
  color: var(--light-color);
  font-size: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button {
  background: var(--primary-color);
  color: var(--dark-color);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-button i {
  font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Prize Carousel */
.prize-carousel {
  position: relative;
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--primary-color);
  box-shadow: var(--shadow);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-slide i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.carousel-slide span {
  font-size: 1.1rem;
  font-weight: 700;
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--light-color);
  transform: scale(1.2);
}

/* Esconde slides duplicados no desktop */
.mobile-duplicate {
  display: none;
}

/* Removido animações antigas dos prize-items */

@keyframes float {

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

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Como Participar Section */
.how-to-participate {
  padding: 80px 0;

}

.how-to-participate .section-title {
  color: var(--light-color);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: var(--gray-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  background: var(--primary-color);
  color: var(--dark-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.step-content p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Points System Section */
.points-system {
  padding: 80px 0;
  background: var(--dark-color);
}

.points-table {
  background: var(--gray-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 3rem;
}

.table-header {
  background: var(--primary-color);
  color: var(--dark-color);
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1rem 2rem;
  font-weight: 600;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
  transition: var(--transition);
  color: var(--light-color);
}

.table-row:hover {
  background: #2a2a2a;
}

.table-row:last-child {
  border-bottom: none;
}

.points-col {
  font-weight: 600;
  color: var(--primary-color);
}

.ranking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--gray-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light-color);
}

.info-card p {
  color: #cccccc;
}

/* Prizes Section */
.prizes {
  padding: 80px 0;
  background: var(--dark-color);
}

.weeks-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  background: var(--gray-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  border-color: var(--primary-color);
}

.week-prizes {
  display: none;
}

.week-prizes.active {
  display: block;
}

.week-prizes.active .prize-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  display: flex !important;
}

.week-header {
  text-align: center;
  margin-bottom: 2rem;
}

.week-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.prize-card {
  background: var(--gray-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prize-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.position {
  background: var(--primary-color);
  color: var(--dark-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.prize-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light-color);
}

.value {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Rules Section */
.rules {
  padding: 80px 0;
  background: var(--dark-color);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rule-item {
  background: var(--gray-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.rule-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.rule-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.rule-item p {
  color: var(--light-color);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--dark-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: #2a2a2a;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #cccccc;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: var(--dark-color);
  text-align: center;
  color: var(--light-color);
  border-top: 2px solid var(--primary-color);
}

.cta-button.mobile {
  display: none;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.highlight-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.cta-button.final {
  background: var(--dark-color);
  color: var(--primary-color);
  font-size: 1.3rem;
  padding: 1.5rem 3rem;
  border: 2px solid var(--primary-color);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  padding: 2rem 0;
}

.hamburger-button {
  display: none;
  /* Escondido por padrão no desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  /* Garante que fique acima de outros elementos */
}

.hamburger-button .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Responsividade */
@media (max-width: 768px) {
  .caixa-neon-piscando {
    margin-top: 0px;
  }

  .hero {
    margin-top: 0px;
  }

  .hamburger-button {
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }

  /* Estiliza o menu de navegação para o mobile */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Começa fora da tela, à direita */
    width: auto;
    height: auto;
    background-color: rgba(10, 10, 10, 0.98);
    /* Fundo semi-transparente */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 100px 10px 10px 10px;
    -webkit-user-select: none;
    user-select: none;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
  }

  /* Estilo do menu quando ele está ativo (visível) */
  .nav.active {
    right: 0;
    /* Desliza para dentro da tela */
  }

  .nav a {
    color: #fff;

    font-size: 1.2rem;
    font-weight: 600;
  }

  /* Animação do botão para virar um "X" */
  .hamburger-button.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-button.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-button.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title .brand {
    font-size: 3rem;
  }

  .brand-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .brand-logo {
    height: 50px;
  }

  .brand-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .prize-carousel {
    width: 250px;
    height: 180px;
  }

  .carousel-container {
    height: 120px;
  }

  .weeks-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 100%;
    max-width: 300px;
  }

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

  .steps-container {
    grid-template-columns: 1fr;
  }

  .ranking-info {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .brand-logos {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .cta-button.desktop {
    display: none;
  }

  .cta-button.mobile {
    display: block;
    margin: 60px auto;
  }

  .image-container {
    max-width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .image-container:nth-of-type(1) {
    margin-top: 100px;
  }



  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 0px 0 10px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-title .brand {
    font-size: 2.5rem;
  }

  .brand-logos {
    gap: 0.5rem;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-arrow {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .prize-card {
    flex-direction: column;
    text-align: center;
  }

  .prize-carousel {
    width: 100%;
    height: 80px;
    overflow: hidden;
  }

  .carousel-container {
    width: 200%;
    background-color: var(--primary-color);
    /* Dobro da largura para os slides duplicados */
    height: 100%;
    display: flex;
    overflow: hidden;
    animation: scrollLeft 10s linear infinite;
  }

  .carousel-slide {
    position: static;
    /* << A MUDANÇA MAIS IMPORTANTE: tira do modo "empilhado" */
    opacity: 1;
    /* Garante que fiquem visíveis */
    transform: none;
    /* Remove qualquer transformação inicial */

    /* Estilos para o layout de letreiro */
    width: 5%;
    /* 100% dividido por 8 slides */
    flex-shrink: 0;
    /* Impede que os slides encolham */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--dark-color);
  }

  .carousel-slide i {
    font-size: 1.5rem;
  }

  .carousel-indicators {
    display: none;
  }

  #ficar-de-fora-image,
  #hanz-e-big-image,
  #cadastrando-agora-image {
    align-items: center;
    margin: 0 auto;
    width: 200%;
    display: flex;
    justify-content: center;
    text-align: center;
    height: auto;
  }

  #hanz-e-big-image {
    width: 130%;
  }

  /* Mobile: Carrossel como linha com rolagem infinita */
  .prize-carousel {
    width: 100vw;
    height: 80px;
    margin-left: -20px;
    margin-right: -20px;
    overflow: hidden;
  }

  .carousel-container {
    width: 800%;
    height: 60px;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    animation: scrollLeft 16s linear infinite;
  }



  .carousel-slide i {
    font-size: 1.5rem;
  }

  .carousel-slide span {
    font-size: 1rem;
  }

  /* Mostra slides duplicados apenas no mobile */
  .mobile-duplicate {
    display: flex !important;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-20%);
    }
  }
}

/* Animações adicionais */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.step,
.prize-card,
.info-card,
.rule-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states para acessibilidade */
.cta-button:focus,
.tab-button:focus,
.faq-question:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}