@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    font-size: 62.5%;
    scroll-behavior: smooth;
    width: 100%;
    background-color:#ffffff;
    overflow-x: hidden;
}

.topo .topocolor{
    width: 100%;
    height: 10rem;
    background-color: #1b1b1b;
    border-bottom: 3px solid #DAA520;
    position: relative;
    display: flex;
    /*box-shadow: 1px 1px 5px #DAA520;*/
}

.topo .topocolor::before {
    content: "";
    position: absolute;
    top: .8rem;
    left: .8rem;
    width: 6rem;
    height: 7rem;
    background-color: #DAA520;
    clip-path: polygon(100% 0 , 0 0, 0 100%);
}

.logo-container {
    margin-top: 1rem;
    margin-left: 30rem;
    position: relative;
    width: 180px; 
    height: 180px; 
    padding: 0;
    transition: 1s;
}

.borda {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: girar 30s linear infinite;
}

.centro {
    position: absolute;
    width: 100%; 
    height: auto; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

/* Animação da borda */
@keyframes girar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.topo .topodt{
    width: 100%;
    height: 6rem;
    white-space: nowrap; /* Impede a quebra de linha */
    overflow: hidden;    /* Oculta o conteúdo que excede os limites visíveis */ 
    display: inline-block; /* Garante que o comportamento seja consistente */
    max-width: 100%;      /* Define uma largura máxima para limitar o conteúdo */
}

.topo .topodt p{
    font-family: barlow, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color:white;
    -webkit-text-stroke: 2px rgb(155, 155, 155); /* Espessura e cor da borda */
    line-height: 40px;
    
}

  /*Main*/

main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title{
    margin-top: 10rem;
    font-family: barlow, sans-serif;
    font-size: 3rem;   
    text-transform: uppercase; 
}
.title-form{
    margin-top: 1rem;
    font-family: barlow, sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: brown;
}
.content-experimental{
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

h3{
    margin-top: 2rem;
    font-family: barlow, sans-serif;
    text-transform: uppercase;
    font-size: 1.7rem;
    font-weight: 300;
    
}

.experimental{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 70%;
}

.experimental input{
    font-family: barlow, sans-serif;
    margin-top: 1rem;
    width: 50%;
    height: 4rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid grey;
}

.duoinfos{
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 5%;
}
.duoinfos input{
    font-family: barlow, sans-serif;
    margin-top: 1rem;
    width: 100%;
    height: 4rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid grey;
}

#modalidade{
    font-family: barlow, sans-serif;
    margin-top: 2rem;
    width: 50%;
    height: 4rem;
    text-transform: uppercase;
}

.horario{
    font-family: barlow, sans-serif;
    margin-top: 2rem;
    width: 20rem;
    height: 4rem;
    text-transform: uppercase;
}

.hidden {
    display: none;
}

#horarios-kickboxing,
#horarios-kickboxing-feminino,
#horarios-jiu-jitsu,
#horarios-jj-kids,
#horarios-mma,
#horarios-boxe,
#horarios-karate,
#horarios-capoeira,
#horarios-funcional {
    position: relative;
    z-index: 10; /* Ou qualquer valor maior que o dos outros elementos */
}

form label{
    margin-top: 2rem;
    display: block; /* Isso faz a label ocupar toda a largura e ficar em cima do select */
    font-family: 'Barlow', sans-serif; /* Fonte para a label */
    font-size: 1.3rem; /* Tamanho da fonte */
    text-transform: uppercase;
}

.modali{
    font-family: barlow, sans-serif;
    margin-top: 0.2rem;
    width: 20rem;
    height: 4rem;
    text-transform: uppercase;
    border-radius: 0.5rem;
    border: 1px solid grey;
}

#agendar{
    margin-top: 3rem;
    width: 50%;
    height: 4rem;
    outline: none;
    border: none;
    border-radius: .5rem;
    color: white;
    font-family: barlow, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    background-color: rgb(173, 27, 27);
    transition: .5s;
    cursor: pointer;
    
}

#agendar:hover{
    background-color: rgb(214, 10, 10);
}
    
  /* Rodape*/

.rodape{
    margin-top: 5rem;
    width: 100%;
    height: 6rem;
    white-space: nowrap; /* Impede a quebra de linha */
    overflow: hidden;    /* Oculta o conteúdo que excede os limites visíveis */ 
    display: inline-block; /* Garante que o comportamento seja consistente */
    max-width: 100%;      /* Define uma largura máxima para limitar o conteúdo */
}

.rodape p{
    font-family: barlow, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color:white;
    -webkit-text-stroke: 2px rgb(155, 155, 155); /* Espessura e cor da borda */
    line-height: 40px;
    
}

footer{
    width: 100%;
    color: white;
    background-color: #1b1b1b;

}

.footer-content{
    background-color: #1b1b1b;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
    font-family: barlow, sans-serif;
}

.footer_contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #FFC20E;
}
.footer_contacts p{
    margin: 1rem 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #FFC20E;
    text-shadow: 1px 1px 2px #FFC20E;
}
.footer_contacts img{
    width: 150px;
}

.footer_contacts .social_medias{
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.social_medias .footer_link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    color: white;
    font-size: 3rem;
    text-decoration: none;
    transition: .5s;
}

.social_medias .footer_link:hover{
    color: #FFC20E;
}

.endereco{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.endereco h3{
    font-size: 2rem;
    color: #FFC20E;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.endereco p{
    font-size: 1.6rem;
    width: 50%;
    line-height: 2rem;
}

.footer-contatos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-contatos h3{
    font-size: 2rem;
    color: #FFC20E;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.footer-contatos p{
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-subscribe{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-subscribe h3{
    font-size: 2rem;
    color: #FFC20E;
    margin-bottom: 2rem;  
    text-transform: uppercase;
}

.footer-subscribe p{
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.input_group{
    display: flex;
    align-self: center;
    background-color: #dadada;
    border-radius: 4px;
    width: 70%;
}

.input_group input{
    all: unset;
    padding: 1.2rem;
    width: 100%;
    font-size: 1.5rem;
    color: #0D0D0D;
}

.input_group button{
    background-color: #FFC20E;
    border: none;
    outline: none;
    color: black;
    padding: 0;
    width: 100px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 2rem;
}

.input_group button:hover{
    background-color: #ffd900;
}

.copyrights_footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8vh;
    background-color: #0D0D0D;
    font-size: 1.5rem;
    font-family: barlow, sans-serif;
    text-transform: uppercase;
}

/*Medias Queries*/

@media (max-width: 1024px) and (min-width: 768px) {
    .input_group {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .title-form {
        font-size: 2rem;
    }
    .experimental {
        width: 90%;
    }
    .experimental input {
        width: 90%;
    }
    .experimental input[name="nome"] { 
        width: 100%; /* Input do nome maior */
    }
    .duoinfos {
        flex-direction: column;
        gap: 1rem;
        width: 90%;
    }
    .duoinfos input {
        width: 100%;
    }
    #modalidade, .modali, .horario, #agendar {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .input_group {
        width: 100%;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .copyrights_footer {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .logo-container {
        margin-left: 20rem;
        width: 150px; 
        height: 150px; 
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    .title-form {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .experimental input, .duoinfos input {
        height: 3rem;
    }
    #modalidade, .modali, .horario, #agendar {
        height: 3rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 426px) {
    .input_group {
        width: 100%;
    }
    .footer-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .footer_contacts {
        border: none;
    }
    .copyrights_footer {
        font-size: 1rem;
    }
    .copyrights_footer p {
        text-align: center;
    }
}
