/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte padrão */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 40px 20px;
}

/* Container principal */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #ecf0f1, #ffffff);
}

/* Cabeçalho com Foto e Contato */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #2980b9;
}

.contact-info h1 {
    font-size: 2.5em;
    color: #2980b9;
}

.contact-info p {
    font-size: 1.1em;
    color: #7f8c8d;
}

.contact-info a {
    color: #2980b9;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Títulos das seções */
h2 {
    font-size: 1.8em;
    color: #2980b9;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #2980b9;
    margin-top: 20px;
}

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

/* Divisão em duas colunas */
.two-columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Estilo das seções de texto */
p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: #7f8c8d;
}

/* Estilo para os links */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.6em;
    }

    .two-columns {
        flex-direction: column;
        gap: 10px;
    }

    section {
        margin-bottom: 30px;
    }

    .profile-photo {
        width: 100px;
        height: 100px;
    }
}
