/**
 * Estilo do header.
 *
 */

header.main-header {
    background-color: var(--primary-color);
}

/**
 * Estilo de main.
 *
 */
main {
    margin-top: 70px;
}

@media screen and (max-width: 576px) {
    main {
        margin-top: 68px;
    }
}

/**
 * Seção de banner.
 *
 */

section.banner {
    padding-left: 0;
    padding-right: 0;
}

section.banner .image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

section.banner .image-container img {
    display: block;
    height: 600px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

/* Media query */
@media screen and (max-width: 768px) {
    section.banner .image-container img {
        height: 400px;
    }
}

@media screen and (max-width: 576px) {
    section.banner .image-container img {
        height: 250px;
    }
}


/**
 * Seção de conteúdo.
 *
 */
section.content {
    padding-left: 0;
    padding-right: 0;
}

section.content .section-title {
    margin-bottom: 2.5rem;
}

section.content .text-content h1,
section.content .text-content h2,
section.content .text-content h3,
section.content .text-content h4,
section.content .text-content h5,
section.content .text-content h6 {
    color: rgb(62, 62, 61);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
    line-height: 2.5rem;
    word-break: break-word;
}

section.content .text-content p {
    color: rgb(62, 62, 61);
    font-size: 1.375rem;
    font-weight: 400;
    font-style: normal;
    line-height: 2rem;
    word-break: break-word;
    margin-top: 2rem;
}

section.content .text-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

section.content .call-to-action a {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-image {
    margin-top: 2rem;
}

/* Media query */
@media screen and (max-width: 576px) {

    section.content .text-content h1,
    section.content .text-content h2,
    section.content .text-content h3,
    section.content .text-content h4,
    section.content .text-content h5,
    section.content .text-content h6 {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    section.content .text-content p {
        font-size: 1.125rem;
        line-height: 1.75rem;
        margin-top: 1.75rem;
    }
}


/**
 * Página de currículo.
 *
 */

 section.content .top-information {
    display: flex;
    align-items: center;
}

section.content .top-information h1 {
    margin: 0.5rem;
}

section.content .top-information .secondary-information h3 {
    font-weight: 300;
}

section.content .profile-picture {
    display: block;
    max-height: 13.5rem;
    margin-bottom: 1.25rem;
    border-radius: var(--border-radius-md);
}

@media screen and (max-width: 576px) {
    section.content .profile-picture {
        max-height: 7.5rem;
        margin-bottom: 1.25rem;
    }

    section.content .top-information {
        flex-direction: column;
    }
}