/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f7f6;
    color: #333;
    padding: 40px 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    border-top: 8px solid #2c3e50; /* Detalhe superior profissional */
}

/* Cabeçalho */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

header p {
    font-size: 0.95rem;
    color: #666;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
}

.social-links a:hover {
    text-decoration: underline;
}

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

/* Seções */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.3rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Experiência e Formação */
.job {
    margin-bottom: 20px;
}

.job h3 {
    font-size: 1.1rem;
    color: #333;
}

.job span {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

ul {
    list-style-position: inside;
    margin-left: 10px;
}

li {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Grid de Habilidades */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

/* Responsividade para Celular */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 1.6rem;
    }
}