* {
    box-sizing: border-box;
    margin: 0;
}

html, body {
    height: 100%;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "SUSE", sans-serif;
    padding: 5%;
}


main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    height: 100vh;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}

main.show {
    opacity: 1; 
}

#text-masc {
    padding-left: 5%;
}

#text-fem {
    padding-left: 2%;
}



#div-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5%;
}

#div-title h1 {
    padding-top: 5.5%;
}

main h1 {
    margin-bottom: 1%;
    font-family: "SUSE", sans-serif;
    font-weight: 1000;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29246b;
    transition: opacity 0.5s ease-in-out;
    text-align: center; /* Centraliza o texto */
}

#div-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; 
    width: 80%;
    transition: opacity 1s ease-in-out 1s; 
    margin-bottom: 5%;
    gap: 2vw; /* Espaçamento proporcional entre os botões */

}

button {
    
    appearance: none;
    border: solid #29246b;
    margin: 1%;
    font-family: "SUSE", sans-serif;
    width: 100%;
    height: 100%;
    background-color: #29246b;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    border-radius: 2vh;
    cursor: pointer;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
}

#div-buttons img {
    width: 25%; 
    height: 25%;
    margin-bottom: 1vw;
}



button h2 {
    color: white;
    font-size: 2vw; /* Tamanho proporcional à janela */
}

.button-alt:disabled {
    pointer-events: none;
}

.button-alt:hover {
    color: white;
    background-color: #29246b;
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
    border: solid #29246b;
}

.button-alt:active {
    box-shadow: none;
    transform: translateY(0);
}

#voltar {
    color: #29246b;
    font-family: "SUSE", sans-serif;
    font-weight: 600;
    font-size: 1.5vw; /* Tamanho proporcional à janela */
    margin-top: 2vw; /* Espaçamento superior */
}

#link-masculino,
#link-feminino {
    text-decoration: none;
    padding: 2%;
    width: max-content;
    height: max-content;
}

#masc-img, 
#fem-img {
    padding-top: 3%;
}


@media (max-width: 600px) {
    #div-title h1 {
        font-size: 20px;
    }

    #div-buttons {
        flex-direction: column; 
        align-items: center;
        
    }

    .button-alt {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
    }

    .button-alt img {
        width: 180px;
        height: 180px;
    }

    #text-fem, 
    #text-masc {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    #div-buttons {
        gap: 15px;
    }

    .button-alt {
        padding: 12px 25px;
    }
}
@media (min-width: 1024px) {
    #div-title h1 {
        font-size: 30px;
    }

    #div-buttons {
        gap: 25px;
    }

    .button-alt {
        padding: 20px 40px;
    }
}