/* 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;
    color: var(--corBranca);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.inscricoes #kit-more-button {
    padding: 9.75px 22.5px;
    background-color: red;
    border: none;
    max-width: 1080px;
    border-radius: 5px;
    transition: .5s;
    cursor: pointer;
    color: var(--corBranca);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

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

.inscricoes #kit-more-button:hover {
    background-color: rgb(219, 0, 0);
}

/* 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: 1rem;
  font-weight: 400;
  text-indent: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.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 ULTIMOS EVENTOS */

.ultimos-eventos-sec {
  background-color: var(--corLaranja);
  padding: 80px;
  text-align: center;
}

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

#ultimos-eventos {
  width: 100%;
  max-width: 800px;  /* ajuste opcional */
  margin: auto;
  position: relative;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  width: 100%; /* 6 imagens */
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  height: 500px;
}

/* Botões */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 5px;
  user-select: none;
}

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

.prev:hover,
.next:hover {
  background: rgba(0,0,0,0.8);
}

/* ESTILO DE RESULTADOS */

.resultados {
  text-align: center;
  padding: 80px;
}

.resultados h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.resultados .colocacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

.cards {
  border-radius: 5px 5px 0px 0px;
  border-radius: 0.25rem;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  background-color: var(--corBranca);
  padding: 40px 0px;
  margin: 40px 40px;
}

.cards button {
  margin-top: 30px;
}

.resultados 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);

}

.resultados 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;
}