@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: linear-gradient(to right, #05b347e3, #29b1b1);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    max-width: 950px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 20px;
}

.header {
    background-color: #004d80;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.header h1 {
    color: #fff;
    margin: 0;
}

.header p {
    color: #fff;
}

.profile-img {
    display: block;
    width: 150px;
    max-width: 100%;
    border-radius: 50%;
    margin: 20px auto;
    border: 4px solid #004d80;
}

.bio {
    text-align: justify;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    padding: 0 10px;
}

.projects {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.projects h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.projects ul {
    list-style: none;
    padding: 0;
}

.projects li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.projects a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.projects a:hover {
    color: #004d80;
    text-decoration: underline;
}

/* Redes Sociais */
.contact {
    margin-top: 30px;
}

.contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #004d80;
}

.contact ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact li {
    font-size: 18px;
    margin: 10px 15px;
    display: flex;
    align-items: center;
}

.contact i {
    font-size: 24px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.contact i.fa-instagram { color: #E1306C; }
.contact i.fa-github { color: #171515; }
.contact i.fa-linkedin { color: #0077b5; }
.contact i.fa-envelope { color: #000000; }

.contact a {
    color: #004d80;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover i {
    transform: scale(1.2);
}

/* Tecnologias */
.technologies {
    margin-top: 40px;
}

.technologies h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #004d80;
}

.technologies ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.technologies li {
    font-size: 18px;
    margin: 10px 20px;
    display: flex;
    align-items: center;
}

.technologies i {
    font-size: 28px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

/* Cores específicas para tecnologias */
.technologies i.fa-github { color: #171515; }
.technologies i.fa-git-alt { color: #F1502F; }
.technologies i.fa-python { color: #306998; }
.technologies i.fa-java { color: #ec2025; }
.technologies i.fa-js { color: #f7df1e; }
.technologies i.fa-css3-alt { color: #264de4; }
.technologies i.fa-html5 { color: #e34c26; }

.technologies li:hover i {
    transform: scale(1.2);
}
