/* Importação da Fonte */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f9; /* Fundo suave */
    color: #333;
    line-height: 1.6;
}

/* Layout Geral */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER (Topo da Página) --- */

header {
    background-color: #0073e6; /* Azul vibrante de telecom */
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-pic {
    width: 150px; /* Tamanho da foto */
    height: 150px;
    border-radius: 50%; /* Transforma a imagem em um círculo */
    object-fit: cover; /* Garante que a imagem preencha o círculo */
    margin-bottom: 15px;
    border: 4px solid rgba(255, 255, 255, 0.5); /* Borda branca suave */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 5px;
    font-weight: 700;
}

header .subtitle {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.95em;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-info a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.location-age {
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: 300;
}

/* --- MAIN CONTENT (Seções) --- */

main {
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 100%; /* Ocupa 100% da largura */
}

/* Título principal de cada card (h2) */
.card h2 {
    color: #0073e6;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 700;
}

/* Títulos de subseção (h3) - Hard Skills / Soft Skills */
.card h3 {
    color: #0056b3; 
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
    border-bottom: 1px dashed #ccc; 
    padding-bottom: 5px;
}

/* Listas (Projetos e Competências) */
.card ul {
    list-style-type: none;
    padding-left: 0;
}

.card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.card li::before {
    content: "•";
    color: #0073e6;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Destaques Técnicos dentro de parágrafos (opcional: usando a tag strong) */
.card p strong {
    color: #0056b3; 
    font-weight: 700;
}

/* --- FOOTER --- */

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85em;
    margin-top: 30px;
}

/* --- MEDIA QUERIES (Responsividade) --- */

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .contact-info a {
        margin: 0;
    }
    
    main {
        padding: 20px 10px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h2 {
        font-size: 1.5em;
    }
}