* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom right, #f0f4f8, #d9e4f5);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.navegacao {
    background: linear-gradient(to bottom, #1e3a8a, #264c9a);
    color: white;
    padding: 20px 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.menu-container button {
    background-color: white;
    color: #1e3a8a;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-container button:hover {
    background-color: #dbeafe;
}

.btn-nav {
    background: #fdb500;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    white-space: nowrap;
}

.btn-nav:hover {
    background: #ebebeb;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: black;
}

.btn-nav:active {
    transform: scale(0.98);
}

.btn-nav:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}


h1, h2 {
    font-weight: 700;
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 16px;
}

h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

p, li {
    font-size: 16px;
}

.barra-lateral {
    font-size: 2rem;
    font-weight: bold;
    color:#ffa600;
    position: relative;
    padding-left: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.barra-lateral::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #ffa600;
    border-radius: 2px;
}

/* cada card individual */
.card-aprendizado, .projeto-unifal, .formacao, .card-pessoal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1200px;
}

.card-aprendizado:hover, .projeto-unifal:hover, .formacao:hover,  .card-pessoal:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.02);
}

.conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

.lista {
    margin-left: 15px;
    font-size: 17px;
}

/* container de cards de skills */
.container-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 180px;
    height: 120px;
    gap: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cards-skills:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px) scale(1.05);
}


img{
    width: 65px;
    height: 65px;
}
.foto-perfil {
    text-align: center;
    margin-bottom: 20px;
}

.foto {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit:contain;
    border: 3px solid #ccc;
     box-shadow: 5px 5px 10px rgba(0,0,0,0.4); /* Sombra com deslocamento, desfoque e cor */
}


/* responsividade */
@media (max-width: 768px) {
 

    .menu-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .btn-nav {
        flex: 1 1 100px;
        max-width: 140px;
        font-size: 1rem;
        text-align: center;
    }

    .card-minigame, .input, .submete {
        padding: 16px;
        width: 100%;
        max-width: 90vw;
    }

    .titulo {
        font-size: 1.5rem;
    }

    .sub-titulo {
        font-size: 1rem;
    }

    .card-resultado {
        width: 90%;
        padding: 1rem;
    }
}