@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/* ESTILO + CONFIGURAÇÕES GERAIS */

:root {
    --corBranca: #F9F9F9;
    --corLaranja: #FF7A00;
    --corBordas: #cecece;
    --corCinza-Claro: #666666;
    --corCinza-Medio: #4b4b4b;
    --corCinza-Escuro: #172026;

    --fontePadrao: "Montserrat", sans-serif;
    --fonteDestaque: "Playfair Display", serif;
}


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

html {
  scroll-behavior: smooth;
}

h1,h2,h3,h4 {
    color: var(--corCinza-Medio);
}

body {
    background-color: var(--corBranca);
    font-family: var(--fontePadrao);
    color: var(--corCinza-Claro);
}

/* ESTILO DO CABEÇALHO */

header {
  padding: 12px 4%;
  background-color: var(--corCinza-Escuro);
}

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

header .logo img {
  max-width: 70px;
  border-radius: 50%;
}

header .menu-desktop a {
  color: var(--corBranca);
  text-decoration: none;
  display: inline-block;
  transition: 0.5s;
  font-family: var(--fonte-destaque);
}

header .menu-desktop a:hover {
  color: var(--corCinza-Claro);
  transform: scale(1.05);
}

header .menu-desktop ul {
  list-style-type: none;
}

header .menu-desktop ul li {
  display: inline-block;
  padding: 0 40px;
}

header .btn-contato button {
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--corLaranja);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  color: var(--corBranca);
}

header .btn-contato button:hover {
  box-shadow: 0px 0px 8px #E56C00;
}

/* Estilo do Menu Mobile */

.btn-menu-mobile {
    display: none;
}

.btn-menu-mobile i {
    font-size: 2.8rem;
    color: var(--corBranca);
    cursor: pointer;
}

header .menu-mobile {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--corCinza-Escuro);
    text-align: left;
    padding: 32px 0;
    pointer-events: none;
    transition: .5s;
}

.menu-mobile ul {
    list-style: none;
    padding: 64px 0;
}

.menu-mobile ul li a {
    color: var(--corBranca);
    font-size: 1.4rem;
    text-decoration: none;
    padding: 24px;
    display: block;
    transition: .5s;
}

.menu-mobile ul li a:hover {
    background-color: var(--corCinzaClaro);
    color: var(--corLaranja);
}

.menu-mobile .bi-x-lg {
    font-size: 2rem;
    color: var(--corBranca);
    padding: 24px;
    cursor: pointer;
}

.menu-mobile.abrir-menu {
    left: 0;
    pointer-events: initial;
}

/* ESTILO DE: INSCREVA-SE */

.inscreva-se {
  background-image: url("../imagens/inscreva-se.png");
  display: flex;
  height: 100vh;
  background-size: cover; /* cobre toda a tela */
  background-position: top center;
  background-repeat: no-repeat;/* não repete */
}

.inscreva-se #espacamento {
/* background-color: black; */
width: 70%;
}

.inscreva-se button {
  margin-top: 32px;
  padding: 15.75px 22.5px;
  color: var(--corBranca);
  font-size: 3rem;
  font-weight: bold;
  background-color:#5984FF;
  border: none;
  box-shadow: 5px 5px 0px #295ce8;
  max-width: 1080px;
  border-radius: 15px;
  transition: .5s;
  cursor: pointer;
}

.inscreva-se button:hover {
    background-color: #295ce8;
    box-shadow: 5px 5px 0px #2D3ABA;
}


/* ESTILO DE: INSCRIÇÕES */

#corrida-tag {
  text-align: center;
  padding: 50px 0px 20px 0px;
  font-size: 2.5rem;
}

.inscricoes {
    display: flex;
    justify-content: space-around;
    padding: 0 4%;
}

.inscricoes .more-button {
    background-color: var(--corBranca);
    border: 0;
}

.inscricoes .kit {
    margin-top: 20px;
    display: flex;
    border-radius: 5px 5px 0px 0px;
    padding: 15px;
    align-items: center;
    max-width: 650px;
    border-radius: 0.25rem;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s;
}

.kit:hover {
    background: #f5f5f5;
}

.inscricoes h3 {
    font-weight: 700;
}

.inscricoes .kit img {
    max-width: 90px;
}

.inscricoes .kit .valor {
    color: var(--corCinza-Escuro);
}

.inscricoes .kit-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 650px;
}

.inscricoes .kit-more {
    display: flex;
    max-width: 650px;
    padding: 15px;
    border-radius: 0px 0px 5px 5px;
    border-radius: 0.25rem;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.inscricoes .kit-more > img {
    max-width: 200px;
}

.inscricoes .esc-aba {
    display: none;
    border-top: solid 0.1px var(--corBordas);
}

.inscricoes .kit-more-space {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px 15px;
    margin-bottom: 10px;
}

.inscricoes .text {
    padding-left: 10px;
}

.inscricoes .text h3 {
    padding-bottom: 10px;
}

.inscricoes .evento-info-tag {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px 5px 0px 0px;
    padding: 15px;
    align-items: center;
    max-width: 650px;
    min-width: 300px;
    border-radius: 0.25rem;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s;
}

.inscricoes .evento-info-tag:hover {
    background: #f5f5f5;
}

.inscricoes .evento-info-more {
    max-width: 650px;
    padding: 15px;
    border-radius: 0px 0px 5px 5px;
    border-radius: 0.25rem;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.inscricoes .evento-info-more h3 {
    margin-bottom: 5px;
}

.inscricoes .kit-more-button {
    padding: 9.75px 22.5px;
    background-color:#74E895;
    border: none;
    max-width: 1080px;
    border-radius: 5px;
    transition: .5s;
    cursor: pointer;
}

.inscricoes .kit-more-button a {
    display: block;
    width: 100%;
    height: 100%;
}


.inscricoes .kit-more-button:hover {
    background-color: #65D986;
}

.inscricoes a {
    color: var(--corBranca);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

/* ESTILO DO: DIVISOR */

.divisor {
  margin: 50px auto;
  width: 80%;
  height: 1px;
  background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.25),
        transparent
  );
}

/* ESTILO DO: EDIÇÃO ANTERIOR */

.edicao-anterior {
  padding: 80px;
  margin-top: 80px;
  text-align: center;
  background-color: var(--corLaranja);
}

.edicao-anterior h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--corBranca);
}

/* ---- CARROSSEL ---- */

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden; 
}

.videos-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.video {
    min-width: 100%;
    transition: transform 0.5s ease;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---- SETAS ---- */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--corBranca);
    border: none;
    padding: 15px 20px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.2s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.prev { left: -10px; }
.next { right: -10px; }

/* MOBILE */
@media (max-width: 600px) {
    .prev { left: 5px; }
    .next { right: 5px; }
}

/* ESTILO DO: APRESENTAÇÃO */

.apresentacao {
  padding: 80px 8%;
  display: flex;
  gap: 100px;
  justify-content: space-around;
}

.apresentacao .text-space {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 50%;
}

.apresentacao p {
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 600;
  text-indent: 20px;
  line-height: 1.5;
}

.apresentacao img {
  max-width: 500px;
}

.apresentacao  a {
  text-decoration: none;
}

.apresentacao a button {
  padding: 10px 80px;
  font-size: 25px;
  font-weight: 600;
  background-color: var(--corLaranja);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  color: var(--corBranca);

}

.apresentacao a button:hover {
  box-shadow: 0px 0px 8px #E56C00;
}

/* ESTILO DO FOOTER */

footer {
  padding: 60px 4%;
  display: flex;
  flex-direction: column;
  background-color: var(--corCinza-Escuro);
  align-items: center;
}

footer .btn-redes {
  padding: 30px;
  display: flex;
  gap: 20px;
}

footer .btn-redes button {
  background-color: transparent;
  border: 2px solid var(--corBranca);
  border-radius: 8px;
  color: var(--corBranca);
  cursor: pointer;
  font-size: 1.1rem;
  transition: .5s;
  width: 56px;
  height: 56px;
  font-size: 24px;
  margin-right: 8px;
}

footer .btn-redes button:hover {
    background-color: var(--corCinza-Claro);
    color: var(--corLaranja);
}

footer img {
  max-width: 80px;
  border-radius: 50%;
}

footer p {
  color: var(--corBranca);
  text-align: center;
}

/* ==============================
   MEDIA QUERIES - RESPONSIVO
=================================*/

/* ===== Celulares pequenos (até 440px) ===== */
@media screen and (max-width: 480px) {

    .inscreva-se {
      background-image: url("../imagens/inscreva-se-resp.png");
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100vh;
      background-size: cover; /* cobre toda a tela */
      background-position: top center;
      background-repeat: no-repeat;/* não repete */
    }

    .inscreva-se #espacamento {
    /* background-color: black; */
    height: 62%;
    }

    .inscreva-se .envelopamento {
      display: flex;
      justify-content: center;
      background-color: #75E896;
      margin-top: 32px;
      width: 100%;
    }

    .inscreva-se button {
      margin-top: 5px;
      margin: 10px 2px 15.5px auto;
      padding: 15.75px 22.5px;
      color: var(--corBranca);
      font-size: 2rem;
      font-weight: bold;
      background-color:#5984FF;
    }

    #corrida-tag {
      font-size: 1.3rem;
    }
    .inscricoes {
      flex-direction: column-reverse;
    }

    .inscricoes .kit-more > img {
      max-width: 0px;
    }
    
    .inscricoes .kit-more p {
      text-align: justify;
      padding-bottom: 15px;
    }

    /* ESTILO DO: EDIÇÃO ANTERIOR */

.edicao-anterior {
  padding: 80px 4%;
}

.edicao-anterior h2 {
    font-size: 1.5rem;
}

/* ---- CARROSSEL ---- */

.video {
    aspect-ratio: 9 / 16;
}

/* ESTILO DO: APRESENTAÇÃO */

.apresentacao {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.apresentacao .text-space {
  max-width: 100%;
  gap: 30px;
}

.apresentacao p {
  font-size: 1rem;
}

}

@media screen and (min-width: 400px) and (max-width: 741px) {

  .inscreva-se #espacamento {
    /* background-color: black; */
    height: 50%;
    }

    .inscreva-se .envelopamento {
      display: flex;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.76);
      margin-top: 32px;
      width: 100%;
    }

    .inscreva-se button {
      margin-top: 5px;
      margin: 10px 2px 15.5px auto;
      padding: 12.75px 22.5px;
      color: var(--corBranca);
      font-size: 2rem;
      font-weight: bold;
      background-color:#5984FF;
    }

}

/* ===== Celulares médios (441px a 480px) ===== */
@media screen and (min-width: 441px) and (max-width: 480px) {

    .inscreva-se #espacamento {
    height: 62.7%;
    }

    .inscreva-se button {
      margin-top: 5px;
      margin: 10px 2px 15.5px auto;
      padding: 15.75px 22.5px;
      color: var(--corBranca);
      font-size: 2.6rem;
      font-weight: bold;
      background-color:#5984FF;
    }

    #corrida-tag {
      font-size: 1.3rem;
    }
    .inscricoes {
      flex-direction: column-reverse;
    }

    .inscricoes .kit-more > img {
      max-width: 0px;
    }
    
    .inscricoes .kit-more p {
      text-align: justify;
      padding-bottom: 15px;
    }

    /* ESTILO DO: EDIÇÃO ANTERIOR */

.edicao-anterior {
  padding: 80px 4%;
}

.edicao-anterior h2 {
    font-size: 1.5rem;
}

/* ---- CARROSSEL ---- */

.video {
    aspect-ratio: 9 / 16;
}

/* ESTILO DO: APRESENTAÇÃO */

.apresentacao {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.apresentacao .text-space {
  max-width: 100%;
  gap: 30px;
}

.apresentacao p {
  font-size: 1rem;
}

}

/* ===== Celulares médios (481px a 768px) ===== */
@media screen and (min-width: 481px) and (max-width: 768px) {

    /* ESTILO DE: INSCREVA-SE */


.inscreva-se {
      background-image: url("../imagens/inscreva-se-resp.png");
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 95.7vh;
      background-size: cover; /* cobre toda a tela */
      background-position: top center;
      background-repeat: no-repeat;/* não repete */
    }

    .inscreva-se #espacamento {
    /* background-color: black; */
    height: 76.2%;
    }

    .inscreva-se .envelopamento {
      display: flex;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.76);
      margin-top: 32px;
      width: 100%;
    }

    .inscreva-se button {
      margin-top: 5px;
      margin: 16px 2px 19.5px auto;
      padding: 15.75px 22.5px;
      color: var(--corBranca);
      font-size: 3rem;
      font-weight: bold;
      background-color:#5984FF;
    }

/* INSCRIÇÕES */

    #corrida-tag {
      font-size: 1.5rem;
    }
    .inscricoes {
      flex-direction: column-reverse;
    }

    .inscricoes .kit-more > img {
      max-width: 0px;
    }
    
    .inscricoes .kit-more p {
      text-align: justify;
      padding-bottom: 15px;
    }

    /* ESTILO DO: EDIÇÃO ANTERIOR */

.edicao-anterior {
  padding: 80px 10%;
}

.edicao-anterior h2 {
    font-size: 1.5rem;
}

/* ---- CARROSSEL ---- */

.video {
    aspect-ratio: 9 / 16;
}

/* ESTILO DO: APRESENTAÇÃO */

.apresentacao {
  display: flex;
  flex-direction: column;
  
  gap: 30px;
}

.apresentacao .text-space {
  max-width: 100%;
  gap: 30px;
}

.apresentacao p {
  font-size: 1.5rem;
}

}

/* ===== Tablets (769px a 1024px) ===== */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    /* ESTILO DE: INSCREVA-SE */

.inscreva-se {
      background-image: url("../imagens/inscreva-se-resp.png");
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 95vh;
      background-size: cover; /* cobre toda a tela */
      background-position: top center;
      background-repeat: no-repeat;/* não repete */
    }

    .inscreva-se #espacamento {
    /* background-color: black; */
    height: 73.2%;
    }

    .inscreva-se .envelopamento {
      display: flex;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.76);
      margin-top: 32px;
      width: 100%;
    }

    .inscreva-se button {
      margin-top: 5px;
      margin: 16px 2px 19.5px auto;
      padding: 15.75px 22.5px;
      color: var(--corBranca);
      font-size: 3rem;
      font-weight: bold;
      background-color:#5984FF;
    }

    /* INSCRIÇÕES */

    #corrida-tag {
      font-size: 1.7rem;
    }
    .inscricoes {
      flex-direction: column-reverse;
    }

    .inscricoes .kit, .inscricoes .kit-more, .inscricoes .evento-info-tag, .inscricoes .evento-info-more {
      max-width: 100%;
    }
    
    .inscricoes .kit-more p {
      text-align: justify;
      padding-bottom: 15px;
    }

        /* ESTILO DO: APRESENTAÇÃO */

    .apresentacao {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .apresentacao .text-space {
      max-width: 100%;
      gap: 30px;
    }

    .apresentacao p {
      font-size: 1rem;
    }

}

