/* Aviso: Cores vibrantes detectadas. Use com cautela para não ofuscar o recrutador. */

:root {
    --primaria: #6c5ce7; /* Um roxo para dar profundidade ao seu desespero */
    --secundaria: #a29bfe;
    --detalhe: #00cec9; /* Um ciano para fingir frescor e inovação */
    --fundo: #f0f2f5;
    --texto: #2d3436;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--fundo);
    color: var(--texto);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.curriculo {
    background: white;
    max-width: 850px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top: 10px solid var(--primaria);
}

header {
    background: linear-gradient(135deg, var(--primaria), var(--secundaria));
    color: white;
    padding: 40px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    letter-spacing: -1px;
}

.contato {
    margin-top: 10px;
    opacity: 0.9;
    font-size: 0.9em;
}

main {
    padding: 40px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: var(--primaria);
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--detalhe);
    display: inline-block;
    margin-bottom: 15px;
}

.item-experiencia {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #eee;
}

.cargo {
    font-weight: bold;
    color: #000;
    display: block;
}

.periodo {
    font-size: 0.85em;
    color: #636e72;
    margin-bottom: 5px;
    display: block;
}

.habilidades-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.habilidades-tags li {
    background: var(--detalhe);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

#lang-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: var(--detalhe);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#lang-toggle:hover {
    background-color: var(--primaria);
}