/* Estilos doa página index.ejs */

/* Área de destaque */
div#area-spotlight {
    position: relative;
    background: url(../../img/index/banner.avif) no-repeat center / cover;
    height: calc(100vh - 84px);
    width: 100%;
}

section.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    z-index: 999;
    height: calc(100vh - 85px);
}

section.left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: #001427;
    opacity: .5;
}

section.left>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    z-index: 1;
    max-width: 50%;
}

section.left h1 {
    color: #FFFFFF;
    font-size: 42px;
    margin-bottom: -5px;
    max-width: 90%;
}

section.left p {
    font-size: 20px;
    color: #FFFFFF;
    opacity: .8;
    font-style: italic;
    text-align: justify;
}

section.left form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60%;
}

/* Área de Como Funciona */
div#fake-background {
    position: absolute;
    display: flex;
    width: 100%;
    height: 150px;
    z-index: 1;
}

div#fake-background div {
    position: absolute;
    width: 190px;
    height: 150px;
    /* background-color: #FFFFFF; */
}

section#area-how-it-works {
    display: flex;
    padding: 30px 0;
}

div#area-steps {
    position: relative;
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

span#red-line {
    display: block;
    opacity: .4;
    width: 100%;
    height: 3px;
    background-color: #782C31;
    position: absolute;
    top: 75px;
    left: 0;
    z-index: 0;
}

div.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    z-index: 2;
}

div.step figure {
    width: 120px;
    height: 120px;
    padding: 0 20px;
    box-sizing: content-box;
    z-index: 2;
    background-color: white;
}

div.step figure.center {
    margin-left: 45px;
}

div.step figure img {
    width: 100%;
    height: 100%;
}

div.step h4 {
    text-align: center;
    color: #782C31;
    font-size: 18px;
    line-height: 24px;
    margin: 15px 0;
}

div.step p {
    color: #686869;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 0 20px;
}

/* Área não perca mais tempo */
section#area-waste-time {
    padding: 30px 0;
    background-color: #782C31;
}

section#area-waste-time h2 {
    color: #fff;
}

section#area-waste-time p {
    font-size: 18px;
    color: #FFFFFF;
}

section#area-waste-time p strong {
    font-size: 18px;
    color: #E5AD5B;
    font-style: italic;
}

section#area-waste-time button {
    display: block;
    margin: 0 auto;
    border: 1px solid #001427;
    background-color: #012a4e;
}

section#area-waste-time button:hover {
    background-color: #001427;
}

/* Área produtos */
section#area-our-products {
    display: flex;
    padding: 30px 0;
}

/* Área público alvo */
section#area-all-audiences {
    display: flex;
    padding: 30px 0;
    background-color: #263747;
}

section#area-all-audiences div.box-dad {
    width: 1160px;
}

section#area-all-audiences h2 {
    color: #FFFFFF;
}

section#area-all-audiences a.btn-default {
    display: block;
    margin: 25px auto 0;
    width: max-content;
    color: #FFFFFF;
    border: 1px solid #5A3037;
    text-align: center;
}

section#area-all-audiences a.btn-default:hover {
    background-color: #3D0C14;
}

/* Área parceiros */
section#our-partners {
    padding: 30px 0;
}

.slick-prev {
    left: -35px !important;
}

.slick-next,
.slick-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slick-next.slick-arrow::before,
.slick-prev.slick-arrow::before {
    content: '\27A4';
    font-family: 'Quicksand';
    color: #FFFFFF;
    background: #003F7A;
    border-radius: 6px;
    padding: 10px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease .3s;
}

.slick-prev.slick-arrow::before {
    transform: rotate(180deg);
}

.slick-dots li button::before {
    content: none;
}

.slick-dots li button {
    background: #003F7A;
    opacity: .5;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: ease .3s;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

div.carousel {
    /* box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.6); */
}

.slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

div.carousel img {
    width: 200px;
}

.slick-dots {
    bottom: -35px !important;
}

div.slick-track {
    cursor: grab;
}

div.slick-track:active {
    cursor: grabbing;
}