* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

strong {
    font-weight: bold;
}

.container {
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.header-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header h2 {
    margin: 5px 0;
    font-size: 18px;
    color: #555;
}

header p {
    margin: 5px 0;
    font-size: 14px;
    color: #777;
}

header a {
    color: #0066cc;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

section {
    margin: 20px 0;
}

section h4 {
    font-size: 20px;
    font-weight: normal;
    text-align: center;
}

section span {
    white-space: nowrap;
}

section h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    cursor: pointer;
}

section h2 span {
    font-size: 40px;
    line-height: 1;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

.job {
    margin-bottom: 20px;
}

.job h3 {
    margin: 5px 0 0 0;
    font-size: 18px;
    color: #333;
}

.job p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.job ul {
    margin: 10px 0;
}

.job ul li {
    font-size: 14px;
    color: #555;
    position: relative;
    margin-bottom: 5px;
}

.job ul li .descricao {
    font-size: 25px;
}

.job ul li {
    color: #777;
    font-size: 14px;
}

.job img {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.job-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.job-header img {
    height: 100px;
    margin-right: 10px;
    border: 1px solid #aaa;
}

.job .job-header div img {
    height: 50px;
    border: 1px solid #fff;
}

.job-header div {
    flex: 1;
}

.collapsible .content {
    display: none;
}

.collapsible.open .content {
    display: block;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

details {
    position: relative;
    margin: 20px 0;
    cursor: pointer;
}

details .summary-title {
    display: block;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    cursor: pointer;
    user-select: none;
}

details .summary-title span {
    font-size: 40px;
    line-height: 1;
}

details .summary-content {
    cursor: default;
    font-weight: 300;
    line-height: 1.5;
}

details summary {
    list-style: none;

    &:focus {
        outline: none;
    }

    &:hover .summary-chevron-up svg {
        opacity: 1;
    }
}

details .summary-chevron-up svg {
    opacity: 0.5;
}

details .summary-chevron-up,
details .summary-chevron-down {
    pointer-events: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
}

.job[open] .summary-chevron-up-child,
.job:not([open]) .summary-chevron-down-child {
    display: none;
}

.job:not([open]) .summary-chevron-up-child,
.job[open] .summary-chevron-down-child {
    flex: 0 0 5%;
    pointer-events: none;
    background: #ffffff;
}

details .summary-chevron-up svg,
details .summary-chevron-down svg {
    display: block;
}

details summary::-webkit-details-marker {
    display: none;
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .profile-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .job-header {
        flex-direction: column;
    }

    .job-header img {
        margin-right: 0;
    }

    section span {
        word-break: break-all;
    }
}
