
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #121212;
}

.container {
    display: flex;
    flex-wrap: wrap;      
    justify-content: center; 
    align-items: center;    
    gap: 30px;
    padding: 20px;
    min-height: 100vh; 
    box-sizing: border-box;
}
.escolha {
    width: 260px;
    padding: 30px 20px;
    border-radius: 20px;
    background-color: #1e1e1e; 
    border: 2px solid #00d4ff; 
    backdrop-filter: blur(50px);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), 
                inset 0 0 5px rgba(0, 212, 255, 0.1);
    
    transition: all 0.3s ease-in-out;
    text-align: center;
    cursor: pointer;
}


.escolha:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 
                0 0 40px rgba(0, 212, 255, 0.3);
    border-color: #55efff;
}

.foto {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #252525;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.foto img {
    max-width: 100%;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.info h2 {
    color: #00d4ff; 
    font-size: 1.5rem;
    margin: 10px 0 5px;
}

.info h4 {
    color: #a0a0a0;
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
}