/* Estilos para a página de seleção de perfil (index.php) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.welcome-container {
    text-align: center;
    max-width: 800px;
}

.welcome-container h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: #0b2f5a;
}

.welcome-container .subtitle {
    font-size: 1.1em;
    color: #888;
    margin-bottom: 40px;
}

.choice-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.choice-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.choice-box i {
    width: 48px;
    height: 48px;
    color: #0b2f5a;
}

.choice-box h2 {
    font-size: 1.4em;
    font-weight: 600;
    color: #0b2f5a;
}

.choice-box p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}