* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--font-size-base);
  line-height: 1.6;
}

:root {
  --color-primary: #1d1d1b;
  --color-secondary: #1ebbef;
  --color-background: #fff;
  --color-text: #000;
  --color-shadow: #1ebbef;
  --font-title: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-size-notebook: 0.9rem;
  --font-size-base: 1.1rem;
  --font-size-nav: 1.1rem;
  --font-size-button: 1.1rem;
  --border-radius: 1.25rem;
  --box-shadow: 0 0 10px 2px rgba(30, 187, 239, 0.15);
  --padding-section: 2rem 1.5rem;
  --padding-card: 2.5rem;
}

.container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 85px 25px;
  box-sizing: border-box;
  min-height: 80vh;
}

header {
  background-color: var(--color-secondary);
  color: var(--color-text);
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  display: flex;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1850px;
  margin: 0 auto;
}

.logo-nav {
  width: 100%;
  max-width: 240px;
  padding: 0 10px 0 0;
}

.logo-nav img {
  width: 100%;
  height: auto;
}

.underline {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 1s ease, border-bottom-width 1s ease;
  font-weight: bold;
}

.underline:hover {
  cursor: pointer;
  border-bottom-color: var(--color-primary);
  border-bottom-width: 2px;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-itens {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: var(--font-size-nav);
}

/* Mantém padding do botão do header menor */
header .botao-conteudo {
  padding: 8px 18px;
  background: var(--color-primary);
  color: var(--color-background);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
}

header .botao-conteudo:hover,
header .botao-conteudo:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

header .botao-conteudo:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
  transition: all 0.1s ease;
}

/* Ajuste das cores das setas do SVG para o botão do header */
header .botao-conteudo #arrow-icon-one,
header .botao-conteudo #arrow-icon-two,
header .botao-conteudo #arrow-icon-three {
  fill: var(--color-background);
}

.hamburger-menu {
  display: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--color-text);
  margin-top: 0;
}

.hamburger-icon {
  font-size: 2rem;
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
}

.hamburger-icon:hover {
  color: var(--color-secondary);
  transform: scale(1.1);
}

.botao-conteiner {
  margin: 0 auto;
  --color-text: var(--color-text);
  --color-background: var(--color-secondary);
  --color-shadow: var(--color-shadow);
  font-size: 1.1rem;
  width: 100%;
  height: auto;
  max-width: 300px;
}

.botao-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-background);
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  font-weight: bold;
  margin: 2rem 0rem;
  transform: translateY(0) scale(1);
}

.botao-conteudo:hover,
.botao-conteudo:focus {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(30, 187, 239, 0.3);
  outline: none;
}

.botao-conteudo:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(30, 187, 239, 0.2);
  transition: all 0.1s ease;
}

.botao-conteudo .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}

/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
  fill: var(--color-primary);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
  fill: var(--color-primary);
}

#arrow-icon-three {
  fill: var(--color-primary);
}

.botao-conteudo:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.botao-conteudo:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.botao-conteudo:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: var(--color-primary);
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: var(--color-primary);
  }
}

/* Animação específica para as setas do botão do header (cores invertidas) */
@keyframes color_anim_header {
  0% {
    fill: var(--color-background);
  }

  50% {
    fill: var(--color-primary);
  }

  100% {
    fill: var(--color-background);
  }
}

/* Aplica a animação específica para as setas do header */
header .botao-conteudo:hover #arrow-icon-one {
  animation: color_anim_header 1s infinite 0.6s;
}

header .botao-conteudo:hover #arrow-icon-two {
  animation: color_anim_header 1s infinite 0.4s;
}

header .botao-conteudo:hover #arrow-icon-three {
  animation: color_anim_header 1s infinite 0.2s;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-optical-sizing: auto;
  font-style: normal;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

li,
p,
a {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-style: normal;
  text-decoration: none;
}

section p {
  font-size: 1.25rem;
}

.card p,
.card-eds p,
.card-ona p {
  font-size: 1.1rem;
}

hr {
  height: 1px;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  opacity: 0.7;
  width: 70%;
  margin: 0 auto;
}

li {
  list-style: none;
  padding: 0.2rem 0rem;
}

.img-inicial img:hover,
.img-jg-resp img:hover {
  transform: rotateX(-15deg) rotateY(-15deg) scale(0.97);
}

.img-sobre img:hover,
.img-trabalhe img:hover {
  transform: rotateX(15deg) rotateY(-15deg) scale(0.97);
}

.sessao-inicial {
  padding-top: 4rem;
  background-color: var(--color-primary);
}

.img-inicial {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.img-inicial img {
  width: 100%;
  height: auto;
  max-width: 100%;
  transition: transform 0.9s ease;
}

.texto-inicial {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 1rem;
  padding: 40px 20px 20px 60px;
}

.sessao-inicial .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.sessao-inicial h1 {
  color: var(--color-secondary);
}

.sessao-inicial p {
  color: #fff;
}

.sessao-sobre .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.img-sobre {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 650px;
  height: auto;
}

.img-sobre img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: transform 0.9s ease;
}

.texto-sobre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 70%;
  gap: 1rem;
  padding: 20px;
}

.sessao-vmv {
  background-color: var(--color-primary);
}

.sessao-vmv .container {
  height: auto;
  padding-top: 130px;
}

.titulo-vmv {
  color: var(--color-secondary);
  text-align: center;
}

.grid-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 500px;
  height: 510px;
  padding: 80px 40px;
  background-color: rgba(26, 26, 24, 0.8);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  color: var(--color-background);
  text-align: center;
}

.titulo-marcas,
.titulo-patrocinador,
.titulo-embaixadores,
.titulo-jg-resp,
.titulo-plataforma-nativa {
  margin-bottom: 1.5rem;
  text-align: center;
}

.sessao-marcas p,
.sessao-patrocinador p,
.sessao-embaixadores p,
.sessao-jg-resp p,
.sessao-plataforma-nativa p {
  text-align: center;
}

.cards-bets {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin: 60px 0;
}

.card-ona,
.card-eds {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  width: 100%;
  max-width: 470px;
  height: auto;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: var(--padding-card);
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: var(--border-radius);
  border: 0.5px solid var(--color-secondary);
  box-shadow: var(--box-shadow);
}

.card-eds a,
.card-ona a {
  text-decoration: none;
  color: var(--color-background);
}

.card-eds img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.card-ona img {
  width: 75%;
  height: auto;
}

.card-ona:hover,
.card-eds:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--box-shadow);
}

.card-eds h3,
.card-ona h3 {
  font-size: 1.3rem;
}

.sessao-patrocinador .container {
  height: auto;
  min-height: auto;
}

.img-clubes {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 80px 0;
}

.img-clubes img {
  width: 100%;
  height: auto;
  max-width: 850px;
  transition: transform 0.9s ease;
}

.img-embaixadores {
  width: 100%;
  height: auto;
  margin: 80px 0;
}

.img-embaixadores img {
  width: 100%;
  height: auto;
  transition: transform 0.9s ease;
}

.img-jg-resp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 100px 0;
}

.img-jg-resp img {
  width: 100%;
  max-width: 650px;
  height: auto;
  transition: transform 0.9s ease;
  border-radius: 7px;
}

.certificados-jg-resp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 85px 0;
  overflow: hidden;
  position: relative;
}

.certificados-carousel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: carousel-slide-infinite 15s infinite linear;
  width: calc(350px * 10 + 1.5rem * 9);
  will-change: transform;
}

.certificados-jg-resp img {
  width: 400px;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 7px;
  flex-shrink: 0;
}

.certificados-jg-resp img:hover {
  transform: scale(1.05);
}

@keyframes carousel-slide-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 5 - 1.5rem * 5));
  }
}

.sessao-plataforma-nativa .container {
  padding-top: 175px;
  height: auto;
}

.img-plataforma {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 100px 0 0 0;
}

.img-plataforma img {
  width: 100%;
  height: auto;
  transition: transform 0.9s ease;
  border-radius: 7px;
}

.sessao-trabalhe .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: 70vh;
}

.texto-trabalhe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  gap: 2rem;
}

.img-trabalhe {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 100px 0 0 0;
}

.img-trabalhe img {
  width: 100%;
  height: auto;
  transition: transform 0.9s ease;
  border-radius: 7px;
}

.security-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 2.5rem 20px;
  gap: 1rem;
  background-color: var(--color-primary);
  color: var(--color-background);
}

.logo-rodape {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-rodape img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.texto-rodape {
  text-align: center;
  max-width: 800px;
}

.sessao-suporte {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: var(--padding-section);
  background-color: var(--color-primary);
  color: var(--color-background);
  gap: 1rem;
}

.container-listas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 850px;
  margin: 20px 0 40px 0;
  color: white;
}

.lista-1,
.lista-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lista-1 a,
.lista-2 a {
  text-align: center;
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: var(--font-size-base);
}

.conteiner-dados-empresariais {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 25px 0 15px 0;
}

.conteiner-dados-empresariais p {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: var(--font-size-base);
}

@media (max-width: 958px) {
  .container {
    min-height: auto;
    padding: 35px 28px;
  }

  section {
    text-align: center;
  }

  h1,
  h2,
  p,
  a {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .card-eds h3,
  .card-ona h3 {
    font-size: 1.1rem;
  }

  section p {
    font-size: 1.1rem;
  }

  .card p,
  .card-eds p,
  .card-ona p {
    font-size: 1rem;
  }

  header {
    padding: 15px 10px 10px 10px;
  }

  .hamburger-menu {
    display: block;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--color-text);
  }

  .hamburger-icon {
    font-size: 2.2rem;
    color: var(--color-text);
  }

  .hamburger-icon:hover {
    color: var(--color-secondary);
  }

  nav {
    justify-content: end;
  }

  .nav-itens {
    display: none;
    color: var(--color-text);
    font-size: 1.1rem;
  }

  .underline {
    display: flex;
    width: 100%;
    justify-content: end;
  }

  .nav-itens.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: var(--color-secondary);
    width: 100%;
    padding: 1rem;
  }

  .botao-conteiner {
    display: none;
  }

  /* Sections com flex-row viram column no mobile */
  .sessao-inicial .container,
  .sessao-sobre .container,
  .sessao-trabalhe .container {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
  }

  /* Cards ficam em column no mobile */
  .cards-bets {
    flex-direction: column;
    gap: 2rem;
    margin: 40px 0;
  }

  h1 {
    text-align: center;
    margin: 0 auto;
  }

  /* Ajustes de largura para mobile */
  .texto-inicial,
  .texto-sobre,
  .texto-trabalhe {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .texto-trabalhe h1 {
    margin: auto;
  }

  .img-inicial,
  .img-sobre {
    width: 100%;
  }

  .img-trabalhe {
    width: 100%;
    margin: 40px 0 0 0;
  }

  /* Footer responsivo */
  .logo-rodape {
    max-width: 200px;
  }

  .texto-rodape {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  /* Carrossel responsivo */
  .certificados-jg-resp {
    margin: 40px 0;
  }

  .certificados-carousel {
    width: calc(250px * 10 + 1rem * 9); /* Largura menor no mobile */
    gap: 1rem; /* Gap menor no mobile */
    animation: carousel-slide-mobile-infinite 15s infinite linear;
    will-change: transform;
  }

  .certificados-carousel:hover {
    animation-play-state: paused;
  }

  .certificados-jg-resp img {
    width: 250px; /* Imagens menores no mobile */
  }

  @keyframes carousel-slide-mobile-infinite {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(
        calc(-250px * 5 - 1rem * 5)
      ); /* Move exatamente metade para mobile */
    }
  }

  .container-listas {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .conteiner-dados-empresariais {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .sessao-plataforma-nativa .container {
    padding-top: 10px;
  }

  .grid-card {
    flex-direction: column;
  }
}

@media (max-width: 1240px) {
  .underline {
    font-size: var(--font-size-notebook);
  }

  header .botao-conteudo {
    font-size: var(--font-size-notebook);
    padding: 8px 10px;
  }

  .nav-itens {
    gap: 1.5rem;
    padding: 0 7px;
  }
}
