/* Estilos Gerais */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 76px;
    background-color: #f8f9fa;
}

/* Navegação */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
}

.navbar-brand {
    color: #4a6bdb;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #3451b2;
    transform: scale(1.05);
}

#icon {
font-size: 1.8rem;
}

.menu-item {
    margin: 0 5px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: #4a6bdb;
}

.menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4a6bdb;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}

/* Seção Hero */
.hero-section {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-bottom: 1px solid #e0e6f5;
}

.profile-image-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.profile-info h1 {
    margin-bottom: 15px;
    color: #2d3748;
}

.badge-container {
    margin-bottom: 20px;
}

.badge {
    padding: 8px 15px;
    margin-right: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.highlight-text {
    display: inline-block;
    position: relative;
    color: #4a6bdb;
    padding-bottom: 5px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: 0;
    left: 25%;
    background-color: #4a6bdb;
    border-radius: 2px;
}

/* Seção de Projetos */
.projects-section {
    padding: 60px 0;
}

.project-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4a6bdb;
}

.project-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.project-btn {
    margin-top: 15px;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    width: 100%;
    background-color: #2d3748;
    color: #ffffff;
    padding: 50px 0 30px;
    margin-top: 60px;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3a4a61;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #4a6bdb;
    transform: scale(1.1);
}

.email-link {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.email-link a {
    color: #a3bffa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link a:hover {
    color: #ffffff;
}

.copyright {
    font-size: 0.9rem;
    color: #a3bffa;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0 30px;
    }
    
    .profile-info {
        margin-top: 20px;
    }
    
    .badge-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .badge {
        margin-right: 0;
    }
}


.dicas {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    border-left: 5px solid #4a6bdb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.dicas h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.dicas ul {
    list-style: none;
    padding-left: 0;
}
.dicas li {
    color: black;
    padding: 8px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.dicas li::before {
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4a6bdb;
    margin-right: 10px;
}