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

body {
    background-color: #fffaf2;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.apresentacao {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px 0;
    border-radius: 12px;
}

.apresentacao h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.apresentacao p {
    margin-bottom: 24px;
    font-size: 18px;
}

.foto-ianca {
    width: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.info h1 {
    margin: 0;
    font-size: 60px;
    color: #333;
    font-family: serif;
}

h2 {
    font-family: serif;
}

.info p {
    font-size: 20px;
    color: #444;
    margin-bottom: 20px;
    max-width: 400px;
}

.botoes {
    display: flex;
    gap: 15px;
    padding: 19px 0;
    flex-wrap: wrap;
}

button,
.btn {
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-laranja {
    background-color: #FF6F00;
    color: white;
}

.btn-laranja:hover {
    background-color: #e55f00;
}

.btn-github {
    background-color: #24292e;
    color: white;
}

.btn-github:hover {
    background-color: #000000;
}

.btn-claro {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
}

.btn-claro:hover {
    background-color: #f4f4f4;
    border-color: #999;
}

.btn-sumup {
    background-color: rgb(201, 201, 201);
    color: #333;
    border: 1px solid #ccc;
}

.btn-sumup:hover {
    background-color: #f4f4f4;
    border-color: #999;
}

.lista-projetos button {
    margin-top: auto;
}

.projeto-ebac .botoes {
    margin-top: 50px; 
}

.projetos {
    padding: 20px 0;
}

.lista-projetos {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

/* Cada projeto em card */
.lista-projetos li {
    background: #FFF7EF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lista-projetos img {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
}

.lista-projetos h3 {
    margin: 0;
    font-size: 22px;
    color: #FF6F00;
}

.lista-projetos p {
    font-size: 16px;
    color: #444;
}

.lista-projetos button {
    margin-top: auto;
}

.sobre {
    padding: 40px 0;
}

.sobre p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.3;
}

.habilidades-social {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background-color: #ffc598;
    padding: 5px 15px;
    color: #000;
    border-radius: 12px;
}

.habilidades {
    width: 90%;
}

.habilidades h2,
.social h2 {
    color: #f05a28;
}

.barra {
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 10px;
}

.preenchido {
    background-color: #f05a28;
    height: 100%;
}

.social {
    width: 60%;
}

.social h2 {
    margin-bottom: 10px;
}

.social a {
    display: inline-block;
    margin-right: 10px;
}

.social a img {
    width: 45px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social a img:hover {
    transform: scale(1.1);
}

.sobre-habilidades-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 40px 0;
    flex-wrap: wrap;
}

.sobre-habilidades-wrapper .habilidades-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 649px) {
    .apresentacao {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .apresentacao p {
        font-size: 16px;
        max-width: 90%;
        margin: 0 auto 24px auto;
    }

    .foto-ianca {
        width: 200px;
    }

    .info h1 {
        font-size: 48px;
    }

    .botoes {
        justify-content: center;
        align-items: center;
    }

    .lista-projetos {
        flex-direction: column;
        align-items: center;
    }

    .sobre p {
        font-size: 16px;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .habilidades {
        width: 100%;
    }

    .social {
        width: 100%;
    }
}