main {
    padding-top: calc(120px + 2rem);
    background-image: url("../img/empresa/background-main.webp");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
main .content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 1rem 3rem;
    position: relative;
}
main .content > .left {
    width: 45%;
}
main .left h1 {
    position: relative;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, 
        rgba(149, 77, 28, 1) 0%, 
        rgba(126, 74, 37, 1) 2%, 
        rgba(0, 0, 0, 1) 50%, 
        rgba(0, 0, 0, 0.4) 75%, 
        rgba(0, 0, 0, 0) 100%
    );
    padding: 5px 0 10px 10px;
    max-width: 400px;
    margin-bottom: 2rem;
}
main .left p {
    font-family: "Montserrat", sans-serif;
    margin-top: 1rem;
    line-height: 2;
    font-size: 1rem;
    font-weight: 500;   
}
main .left p strong {
    font-weight: 900;
}
main .content > .right {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 55%;
}
main .right > .item {
    width: 50%;
}
.item-img {
    width: 100%;
    border-radius: 1rem;
    border: 3px solid #954d1c;
}
.item-img.one {
    height: 520px;
}
.item-img.two {
    height: 380px;
}
.item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.85rem;
}
main .right > .item h2 {
    color: #b3b3b3;
    flex-shrink: 0;
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}
main .content::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: calc(100% - 2rem);
    height: 8px;
    margin: 0 auto;
    border-radius: 10px;
    background: #B25F25;
    background: linear-gradient(120deg, rgba(178, 95, 37, 1) 0%, rgba(245, 200, 140, 1) 50%, rgba(178, 95, 37, 1) 100%);
}
section.diretores {
    overflow: hidden;
}
section.diretores .content {
    padding: 3rem 1rem 6rem;
}
section.diretores .title {
    position: relative;
    background: linear-gradient(90deg, rgb(131 131 131 / 90%) 0%, rgb(140 140 140 / 59%) 55%, rgba(140, 140, 140, 0.4) 75%, rgba(140, 140, 140, 0) 100%);
    padding: 5px 0 10px 10px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
section.diretores h1 {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: #fff;
}
section.diretores h2 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.area-diretores {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
}
.area-diretores .item {
    max-width: 370px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.area-diretores .area-img {
    position: relative;
    width: 100%;
    height: 470px;
    border: 4px solid #954d1c;
    border-radius: 1rem;
}
img.img-item {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8rem;
}
img.tag {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: -35px;
    right: -35px;
}
.area-diretores h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
}
.area-diretores p {
    font-weight: 500;
}
.area-diretores h3,
.area-diretores p {
    font-family: "Montserrat", sans-serif;
}
/* --- BG Effect Lead --- */
.bg-effect-default.left {
    pointer-events: none;
    position: absolute;
    top: -150px;
    left: 0;
    transform: translateY(50%);
    width: 10%;
    height: 150px;
    background: #AE581E;
    background: linear-gradient(120deg, rgba(223, 166, 107, 1) 0%, rgba(174, 88, 30, 1) 100%);
    border-radius: 0 120px 120px 0;
}
.bg-effect-default.right {
    pointer-events: none;
    position: absolute;
    bottom: -150px;
    right: 0;
    transform: translateY(-50%);
    width: 10%;
    height: 150px;
    background: #AE581E;
    background: linear-gradient(120deg, rgba(174, 88, 30, 1) 0%, rgba(223, 166, 107, 1) 100%);
    border-radius: 120px 0 0 120px;
}
@media (max-width: 1600px) {
    .bg-effect-default {
        width: 70px !important;
    }
}
@media (max-width: 700px) {
    .bg-effect-default {
        display: none !important;
    }
}
/* --- END - BG Effect Lead --- */

@media (max-width: 1500px) {
    main .content > .right {
        width: 50%;
    }
    main .right > .item h2 {
        font-size: 2.5rem;
        margin-top: 5px;
    }
}
@media (max-width: 1400px) {
    main {
        padding-top: 2rem;
    }
    main .content {
        gap: 2rem;
    }
}
@media (max-width: 1250px) {
    main .content > .left {
        width: 100%;
    }
    main .content > .right {
        flex-direction: column;
        width: 100%;
    }
    main .right > .item {
        width: 100%;
    }
    main .right > .item h2 {
        margin-top: 1rem;
    }
}
@media (max-width: 1000px) {
    main .content {
        flex-direction: column;
    }
    .area-diretores {
        flex-direction: column;
    }
    .area-diretores .item {
        margin: 0 auto;
    }
    section.diretores h2 {
        max-width: 500px;
    }
}
@media (max-width: 520px) {
    main .left h1 {
        font-size: 1.2rem;
    }
    .area-diretores .item {
        max-width: 100%;
    }
    section.diretores .title {
        flex-direction: column;
        background: none;
        padding: 0;
        margin: 0;
        align-items: flex-start;
    }
    section.diretores h1 {
        background: linear-gradient(90deg, rgb(131 131 131 / 90%) 0%, rgb(140 140 140 / 59%) 55%, rgba(140, 140, 140, 0.4) 75%, rgba(140, 140, 140, 0) 100%);
        padding: 5px 0 10px 10px;
        width: 100%;
        max-width: 400px;
    }
    section.diretores h2 {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}
@media (max-width: 350px) {
    main .right > .item h2 {
        font-size: 2rem;
    }
}