/* 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: var(--corLaranja);
    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: #e66b00;
}

/* 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 */

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

.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 DO APRESENTAÇÃO */

.apresentacao h1 {
    text-align: center;
    padding: 0px;
    font-size: 3rem;
    font-weight: 600;
    color: var(--corLaranja);
}

/* ESTILO DO TEXTO 1 */

.text1 {
    text-align: justify;
    padding: 0px 8%;
    margin: 0px auto;
    font-size: 1rem;
    font-weight: 400;
    text-indent: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.text1 p {
    color: var(--corCinza-Escuro);
    white-space: pre-line;
}

/* ESTILO DO SOBRE O SNAC */

.sobre-snac {
    text-align: center;
    background-color: #F3F3F7;
    padding: 0px 30% 1px 30%;
    margin-bottom: 20px;
}

.sobre-snac h2 {
    padding: 30px 0px;
    font-size: 2rem;
    font-weight: bolder;
    color: var(--corLaranja);
}

.sobre-snac p {
    font-size: 1rem;
    font-weight: 400;
    text-indent: 20px;
    line-height: 1.3;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
    margin-bottom: 80px;
}

/* ESTILO DO HISTORIA */

.historia h2 {
    text-align: center;
    padding: 30px 0px;
    font-size: 2rem;
    font-weight: bolder;
    color: var(--corLaranja);
}

.historia p {
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0px 8%;
    margin-bottom: 30px;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
}

.historia li {
    list-style-position: inside;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--corCinza-Escuro);
    white-space: pre-line;
}

.historia ul {
    margin: 0px 8%;
    margin-bottom: 50px;
}

.imagens {
    display: flex;
    justify-content: center;
    background-color: #f1f1fd;
    min-width: 100vh;
    margin: 0px auto 30px auto;
}

.duas-imagens {
    display: flex;
    gap: 10px;
    justify-content: center;
    background-color: #f1f1fd;
    min-width: 100vh;
    margin: 0px auto 30px auto;
}

.historia #ciclismo {
    max-height: 500px;
    max-width: 650px;
}

#lista {
    margin: 0px 8%;
}

/* ESTILO DE NOSSAS CAMISAS */

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

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

.camisas-apresentacao h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--corBranca);
}
.camisas-apresentacao-div {
    display: flex;
    justify-content: space-evenly;
}

.camisas-apresentacao button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--corBranca);
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    color: var(--corc);
    margin-top: 30px;
}

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

.camisas-apresentacao a {
    text-decoration: none;
    color: var(--corCinza-Escuro);
}

/* ESTILO DE CAMISAS */

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

.camisas {
    display: flex;
    justify-content: start;
    padding: 0 9%;
}

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

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

.camisas h3 {
    font-weight: 700;
}

.camisas .kit img {
    max-width: 150px;
}

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

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

.camisas .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);
}

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

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

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

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

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

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

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

.camisas .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);
}

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

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

.camisas .kit-more-button:hover {
    background-color: #6e1616;
}

/* 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;
}