.area-content {
    background-image: url("../img/home/background-home.webp");
    background-position: top right;
    background-size: 60%;
    background-repeat: repeat-y;
    min-height: 100vh;
}
section.banner {
    margin: 3rem 0 2rem 0;
}
section.banner .swiper-slide img {
    width: 100%;
    height: auto;
}
.area-home-main {
    padding-bottom: 1.5rem;
    border-bottom: 30px solid var(--color-roxo);
}
.area-unicos h1 {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-roxo);
}
.area-unicos h1::after {
    content: "";
    width: 380px;
    height: 4px;
    background-color: #d9d9d9;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.area-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1rem;
}
.area-items > .item {
    background-color: var(--color-roxo);
    padding: 1rem 1rem 1rem 4rem;
    border-radius: 12px;
    min-height: 170px;
    color: #fff;
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: -10%;
}
.area-items > .item h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-verde);
}
.area-items > .item:nth-child(1) {
    background-image: url("../img/home/icone-1.png");
}
.area-items > .item:nth-child(2) {
    background-image: url("../img/home/icone-2.png");
}
.area-items > .item:nth-child(3) {
    background-image: url("../img/home/icone-3.png");
}
.area-parceiros {
    background-color: #383838;
    border: 1rem solid #353434;
    border-left: none;
    border-right: none;
}
.area-parceiros .content {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 150px;
}
.area-parceiros .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.area-parceiros .content h2 span {
    color: var(--color-verde);
    font-weight: 600;
}
.area-carrossel {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.area-carrossel::before,
.area-carrossel::after {
    content: '';
    position: absolute;
    top: -5%;
    width: 100px;
    height: 110%;
    z-index: 2;
    pointer-events: none;
}
.area-carrossel::before {
    left: 0;
    background: linear-gradient(
        to right,
        #383838 0%,
        rgba(56, 56, 56, 0) 100%
    );
}
.area-carrossel::after {
    right: 0;
    background: linear-gradient(
        to left,
        #383838 0%,
        rgba(56, 56, 56, 0) 100%
    );
}
.swiper-parceiros .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}
.swiper-parceiros .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-parceiros .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}
section.em-foco {
    padding: 1.5rem 1rem;
}
section.em-foco > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
section.em-foco .area-img {
    width: 440px;
    height: 560px;
    min-width: 440px;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.em-foco .area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
section.em-foco h2 {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-roxo);
}
section.em-foco h2::after {
    content: "";
    width: 380px;
    height: 4px;
    background-color: #d9d9d9;
    position: absolute;
    bottom: 0;
    left: 0;
}
section.em-foco h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-roxo);
    margin-bottom: 1rem;
}
section.em-foco .text {
    font-size: 1.1rem;
    color: var(--color-cinza);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}
section.em-foco .text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50px;
    z-index: 2;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #fffffff0 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    pointer-events: none;
}
section.em-foco button {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--color-roxo);
    color: #fff;
    align-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .2s;
}
section.em-foco button:hover {
    background-color: var(--color-verde);
    color: var(--color-roxo);
}
@media (max-width: 1120px) {
    section.banner {
        margin: 1.5rem 0 1.5rem 0;
    }
    .area-items {
        flex-direction: column;
    }
    .area-items > .item {
        padding: 2rem;
    }
    .area-parceiros .content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    section.em-foco > a {
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 520px) {
    section.em-foco .area-img {
        width: 100%;
        height: auto;
        min-width: auto;
        min-height: auto;
    }
    .area-unicos h1,
    .area-parceiros .content h2,
    section.em-foco h2,
    section.em-foco h3 {
        font-size: 1.2rem;
    }
    .area-unicos h1 {
        padding: 0 1rem 1rem;
    }
    .area-unicos h1::after {
        width: 220px;
    }
    .area-parceiros .content h2 br {
        display: none;
    }
    .area-parceiros .content h2{
        white-space: normal;
    }
    .area-parceiros .content h2 span {
        white-space: nowrap;
    }
    section.em-foco h2::after {
        width: 100%;
    }
}