:root {
    font-size: 10px;
    --main-color: #df9842;
    --black: #131313;
    --bg: #010103;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

.caixa-video {
    position: fixed;
    z-index: -1;
    /* Ajuste caso a máscara cubra o vídeo */
    width: 100%;
    height: 100%;
    /* Impede rolagem devido ao tamanho do vídeo */
}

.caixa-video video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    /* Garante cobertura completa da tela */
    position: fixed;
    top: 0;
    left: 0;
}

.mascara {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(3, 3, 3, 0.74) 0%, #000000cb 100%);
    z-index: 0;
    /* Certifique-se de que a máscara fique atrás do header */
}

section {
    max-width: 1200px;
    padding: 3rem 2rem;
    margin: 0 auto;
    z-index: 1;
    /* Traz o conteúdo à frente da máscara */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    /* Mantém o header acima da máscara */
    background-color: var(--bg);
    border-bottom: var(--border);
    width: 100%;
    margin: 0;
    /* Evita margem indesejada */
}

.header section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    padding: 1.5rem 0;
}

.header section a img {
    height: 6rem;
}

.header section nav a {
    margin: 0 1rem;
    font-size: 1.8rem;
    color: aliceblue;
    transition: 0.4s;
}

.header section nav a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
}

.caixa-principal {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.caixa-principal div {
    max-width: 60rem;
}

.caixa-principal div h3 {
    color: #fff;
    ;
    font-size: 6rem;
    text-transform: uppercase;
}

.caixa-principal div p {
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1rem 0;
    line-height: 1.8;
}

.botao-link {
    background-color: var(--main-color);
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    transition: 0.3s linear;
    border-radius: 10px;
}

.caixa-principal div a:hover {
    letter-spacing: 0.1rem;

}

.titulo {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.titulo span {
    color: var(--main-color);
}

.caixa-sobre .sobre-container {
    display: flex;
    align-items: center;
    background-color: var(--black);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.caixa-sobre .sobre-container .sobre-imagem {
    flex: 1 1 45rem;
}

.caixa-sobre .sobre-container .sobre-imagem img {
    width: 100%;
}

.caixa-sobre .sobre-container .sobre-texto {
    flex: 1 1 45rem;
    padding: 2rem;
}

.caixa-sobre .sobre-container .sobre-texto h3 {
    font-size: 3rem;
    color: #fff;
}

.caixa-sobre .sobre-container .sobre-texto p {
    font-size: 1.5rem;
    font-weight: lighter ;
    color: #fff;
    line-height: 1.8;
    padding: 1rem 0;
}

.modal {
display: flex;
flex-direction: column;
background-color: transparent;
gap: 20px;
z-index: 4;
position: fixed;
top: 50%;
left: -50%;
transform: translate(-50%, -50%) ;
transition: left 1s linear;
}
.mascara-modal {
    visibility: hidden;
    
    z-index: 3;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(3, 3, 3, 0.74) 0%, #000000cb 100%);
}