/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}


/* Container principal com efeito Parallax */
.parallax-container {
    background-image: url('/_img/3D\ -\ LUCAS\ SOUZA\ PINHEIRO\ -\ BASICO.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Adicionado para garantir que o conteúdo não fique atrás do menu */
    padding-top: 10px; /* Altura aproximada do menu */
}

.parallax-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.656);
    z-index: 1;
}

/* Conteúdo centralizado */
.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

/* Grid de cards de navegação */
.navigation-cards {
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
}

.card {
    background-color: #0f1f2e;
    border-radius: 15px;
    padding: 90px;
    width: 320px;
    margin-top: -150px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 10px 35px #26394a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.card-icon {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 30px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 992px) {
    .navigation-cards {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .card {
        width: 90%;
        max-width: 290px;
        margin-top: 30px;
    }
}
