* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(41,41,42);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.page {
    width: 21cm; /* Tamanho de uma folha A4 */
    min-height: 29.7cm;
    background-color: #ffffff;
    padding: 2.5cm; /* Margens padrão de um documento */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.name {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 5px;
}

.contact-info {
    font-size: 0.9em;
    color: #666;
}

.contact-info p {
    margin: 2px 0;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5em;
    color: #333;
    border-bottom: 2px solid #4b4e52;;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: #444;
}

.skill-list, .education-list, .certification-list, .language-list {
    list-style-type: none;
    margin-left: 20px;
}

.skill-list li, .education-list li, .certification-list li, .language-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.skill-list li::before, .education-list li::before, .certification-list li::before, .language-list li::before {
    content: '•';
    color: #4b4e52;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.education-title, .job-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.education-details, .job-period {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.experience {
    margin-left: 15px;
}