/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header e Navegação */
.header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav_item {
    margin: 0 15px;
}

.nav_link {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav_link:hover {
    background-color: #555;
}

/* Conteúdo Principal */
.main-content {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Seções de Conteúdo */
.content-section {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.content-section:first-child {
    border-top: none;
}

.content-section_title {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-section_body p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Avatar e Header do Perfil */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #0056b3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    background: #fff;
}

.profile-name {
    font-size: 2rem;
    margin: 0;
    color: #0056b3;
    font-weight: bold;
}

.profile-role {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Habilidades Técnicas */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 15px;
}

.skill-item {
    background: #f0f6ff;
    border: 1px solid #cce0ff;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 4px rgba(0,86,179,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.skill-item:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(0,86,179,0.10);
}

/* Formulário de Contato */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #007bff;
    outline: 1.5px solid #007bff;
    background: #f0f6ff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form_button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form_button:hover {
    background-color: #0056b3;
}

/* Rodapé */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-social_link {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.footer-social_link:hover {
    color: #007bff;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 700px) {
    .main-content {
        padding: 15px;
        margin: 10px;
    }
    
    .skills-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-avatar {
        width: 90px;
        height: 90px;
    }
    
    .content-section {
        padding: 25px 0;
    }
}