body {
    font-family: 'Lato', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    color: #333;
    background-color: #f8f8f8;
    text-align: center;
}

.curriculo-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.curriculo-header {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.perfil-foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b49578;
}

.curriculo-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #534b54;
    margin-top: 10px;
}

.curriculo-header .titulo-cargo {
    font-style: italic;
    color: #777;
    margin-top: 5px;
}

.secao-curriculo {
    margin-bottom: 15px; /* Ajustado para um espaçamento menor */
    text-align: left;
}

.secao-curriculo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #534b54;
    border-bottom: 2px solid #b49578;
    padding-bottom: 5px;
    margin-bottom: 10px; /* Reduzido para aproximar mais o texto */
    display: flex;
    align-items: center;
    gap: 10px;
}

.secao-curriculo h2 i {
    color: #b49578;
    font-size: 1.5rem;
}

.item-curriculo {
    margin-bottom: 15px;
}

.item-curriculo h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.secao-curriculo p, .habilidades-lista li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px; /* Reduzido para deixar os parágrafos mais juntos */
    line-height: 1.6; /* Ajustado para deixar o texto mais compacto */
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li::before {
    content: "•";
    color: #b49578;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.habilidades-lista {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Reduzido o espaçamento entre os itens da lista */
}

.instagram-link {
    color: #b49578;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #534b54;
}

.btn-voltar {
    display: inline-block;
    background-color: #534b54;
    color: #fbfdfe;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px; /* Reduzido para ficar mais próximo da seção */
    border: 2px solid #534b54;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-voltar:hover {
    background-color: #b49578;
    color: #534b54;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .curriculo-container {
        padding: 20px;
    }

    .curriculo-header h1 {
        font-size: 2rem;
    }
}