* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham', sans-serif; /* Aplica a fonte Gotham a todo o texto */
}

.logo-mario {
    height: 200px;
}

button {
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    padding: 10px 0;
    border-radius: 3px;
    background-color: #C51111;
    width: 200px;
    height: 50px;
    color: white;
    cursor: pointer;
    margin-top: 30px;
}


.imagem-mario-luigi {
    height: 300px;
}

.corpo {
     height: 100vh;
}

.caixa-mae {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px;
    height: 100vh;
    font-size: 22px;
}

.caixa-principal {
width: 40%;
}

.caixa-principal {
    color: white;
}

.caixa-video {
    position: fixed;
    top: 0;
    z-index: -1;
}

video {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;

}

.mascara {
    height: 100%;
    width: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
}

.link-instagram img {
height: 90px;
position: fixed;
right: 8px;
bottom: 70px;  
}

.link-whatsapp img {
height: 60px;
position: fixed;
right: 20px;
bottom: 20px;
}

.header {
display: flex;
align-items: center;
gap: 30px;
margin: 30px;
}

.header img {
    height: 80px;
}

.header a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.header a:hover {
    color: #C51111;
    font-size: 26px;
    transition: 0.5s ease-in-out;
}

.formulario-fale-conosco {
    background-color: white;
    display: flex;
    gap: 20px;
flex-direction: column;
position: fixed;
left: -300px;
top: 30%;
padding: 20px;
border-radius: 5px;
transition: left 1s ease-in-out;
}

input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: #18D80F;
}

textarea {
    width: 270px;
    height: 100px;
   border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: #18D80F; 
}

.mascara-formulario {
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    transition: visibility 1s ease-in-out;
}


.corpo-adestramento {
    height: 100vh;
    background-color: black;
}

.caixa-mae-adestramento {
    display: flex;
    flex: start;
    justify-content: space-around;
    padding: 100px;
    height: 100vh;
}

.caixa-principal-adestramento {
    display: flex;
    flex-direction: column;
    gap: 10px;
width: 90%;
}

.caixa-principal-adestramento {
    color: white;
    background-color: black;  
  font-family: 'Gotham', sans-serif;
  font-size: 22px;
}
.header-adestramento {
display: flex;
align-items: center;
gap: 30px;
margin: 30px;

}

.header-adestramento img {
    height: 80px;
}

.header-adestramento a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.header-adestramento a:hover {
    color: #C51111;
    font-size: 26px;
    transition: 0.5s ease-in-out;
}

@media (max-width: 1000px) {
    .p1a {
        font-size: 15px; /* Reduz o tamanho da fonte para telas menores */
                padding: 5px; /* Adiciona espaçamento interno */
                width: 100%; /* Garante que o texto ocupe toda a largura disponível */
                box-sizing: border-box;
    }

    .caixa-mae {
        flex-direction: column;
        padding: 10px;
    }

    .caixa-principal {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .imagem-mario-luigi {
        max-width: 80vw;
        height: auto;
    }

    .header {
        margin: 20px;
        justify-content: center;

    }

    .header img {
        display: none;
    }

    .header a {
        font-size: 18px;
    }

.caixa-mae-adestramento {
    font-size: 8px; /* Reduz o tamanho da fonte para telas menores */
                padding: 5px; /* Adiciona espaçamento interno */
                padding-bottom: 80px;
                width: 100%; /* Garante que o texto ocupe toda a largura disponível */
                box-sizing: border-box;
                
}



.header-adestramento img {
    height: 70px;
}
}





  