/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f5f5f5;
}

.highlight {
    color: #2ecc71;
    font-weight: bold;
}

/* Layout principal */
#container {
    display: flex;
    min-height: 100vh;
}

/* Barra lateral */
#bio-container {
    flex: 1 1 20%;
    min-width: 300px;
    background-color: #3A2F2A;
    color: #fff;
    padding: 30px;
    text-align: center;
}

#bio-container h2 {
    margin-bottom: 25px;
}

#bio-image {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 3px solid #2ecc71;
}

#welcome-text {
    font-weight: bold;
    margin: 10px 0;
}

#social-container {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 20px 0;
}

#social-container li {
    margin: 0 10px;
}

#social-container ion-icon {
    font-size: 30px;
    color: #fff;
    transition: .5s;
}

#social-container ion-icon:hover {
    color: #2ecc71;
}

#email-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#email-container ion-icon {
    margin-right: 5px;
    font-size: 20px;
}

#email-container a {
    color: #fff;
    text-decoration: none;
}

#email-container a:hover {
    color: #2ecc71;
}

/* Seção principal */
#about-container {
    flex: 1 1 80%;
    padding: 50px;
}

#name {
    font-size: 42px;
    margin-bottom: 15px;
}

#title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.description {
    max-width: 750px;
    margin-bottom: 10px;
    line-height: 1.6;
}

#btn-projects {
    display: inline-block;
    background-color: #2ecc71;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 25px 0;
    font-weight: bold;
    transition: .5s;
}

#btn-projects:hover {
    background-color: #27ae60;
}

#btn-projects ion-icon {
    position: relative;
    top: 2px;
    margin-right: 5px;
    font-size: 20px;
}

#skills-section-title {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 32px;
}

/* Container de skills */
#skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.skills-box {
    flex: 1 1 30%;
    min-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.skills-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2ecc71;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.skills-box i {
    font-size: 50px;
    margin: 0 10px 10px 0;
}