/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Um cinza muito claro para o fundo */
    color: #3A3A3A;
}

/* Container Principal (Mobile-First) */
.selector-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    text-align: center;
}

.selector-box {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.selector-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gender-button {
    width: 100%; /* Garante que o botão ocupe a largura do container */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 52px; /* Altura mínima de toque */
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.gender-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.gender-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Cores específicas para cada botão */
.gender-button.male {
    background-color: #6E8894; /* Azul Acinzentado (sugestão) */
}

.gender-button.female {
    background-color: #9F86C0; /* Lavanda (cor primária do site feminino) */
}

/* Media Query para telas maiores (Tablets e Desktops) */
@media (min-width: 768px) {
    .selector-title {
        font-size: 2rem; /* 32px */
    }

    .button-wrapper {
        flex-direction: row;
        gap: 1.5rem;
    }

    .gender-button {
        padding: 1.5rem;
    }
}