/* RESET BÁSICO */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f1f1f1;
}

/* HEADER */
#topo {
    text-align: center;
    padding: 30px 20px;
}

/* NOME */
.nome {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
}

/* FOTO */
.foto-perfil img {
    width: 130px;
    border-radius: 50%;
    margin-top: 15px;
}

/* CONTATO */
.contato {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contato li {
    margin: 8px 0;
    font-size: 14px;
}

/* 🔥 AQUI RESOLVE SEU PROBLEMA DOS ÍCONES */
.contato img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

/* LINKS */
a {
    color: #4cc9f0;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ff4d4d;
    text-decoration: underline;
}

/* SEÇÕES */
.bloco {
    background-color: #2a2a2a;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    border-radius: 10px;
}

/* TÍTULOS */
h2 {
    font-family: Georgia, serif;
    color: #ff4d4d;
}

/* TEXTO */
.italico {
    font-style: italic;
}

/* EXPERIÊNCIA */
.experiencia {
    border-left: 4px solid #ff4d4d;
    padding-left: 10px;
    margin-bottom: 10px;
}

/* LISTAS */
ul {
    list-style-type: square;
}

/* IMAGENS GERAIS */
img {
    max-width: 100%;
}

/* RODAPÉ */
#rodape {
    text-align: center;
    padding: 15px;
    background-color: #111;
    margin-top: 20px;
}