:root{
    --branco: #fff;
    --vermelho: #ed394b;
    --preto: #212121;
    --roxo: #615db5;
}


.container{
    width: 1400px;
    margin: 0 auto;
    max-width: 90%;
    display: flex;
}

/* Banner*/
#banner{
    width: 100%;
    position: relative;
    background-image: url(../../totem-de-pagamento/home/touchpay-bg-banner.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 20px;
    padding-top: 130px;
    z-index: 2;
    overflow: hidden;
    
}

#banner .container {
    width: 1400px;
    margin: 0 auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    column-gap: 10%;
}

#banner .container .esq .subtitulo{
    background: linear-gradient(-85deg, #cb336b  0%, #df372f 100%);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--branco);
    font-weight: 700;
    letter-spacing: 0.2px;
    border-radius: 15px;
    display: inline-block;
    padding: 9px 38.1px;
    margin-bottom: 18px;
}

#banner .container .esq .titulo{
    font-weight: 800;
    color: var(--preto);
    line-height: 66px;
    font-size: 52px;
    margin-bottom: 20px;
    width: 716px;
    max-width: 100%;
}

#banner .container .esq .texto{
    color: var(--preto);
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.8px;
    margin-bottom: 27px;
    width: 640px;
    max-width: 100%;
}

#banner .container .esq span{
    font-weight: 700;
}

#banner .container .esq .box-botoes {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#banner .container .esq .box-botoes .vagas{
    border-radius: 25px;
    background: linear-gradient(-85deg, #df372f 0%, #cb336b 100%);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-align: center;
    color: var(--branco);
    padding: 17px 121.4px 17px 121.4px;
    transition: 0.3s all ease-in-out;;
    position: relative;
}

#banner .container .esq .box-botoes .vagas::before{
    content: '';
    background-image: url(../../totem-de-pagamento/home/touchpay-arrow-botoes-saiba.webp);
    width: 14px;
    height: 12px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    transition: 0.2s all ease-in-out;
}

#banner .container .esq .box-botoes .vagas:hover::before{
    right: 10px;
}

#banner .container .esq .box-botoes .vagas:hover{
    background: linear-gradient(-85deg, #615db5 0%, #615db5 100%);
}

#banner .container .esq {
    padding-bottom: 68px;

}

#banner .container .dir{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin-top: -128px;
}

#banner .container .dir .borda-gradiente{
    width: 480px;
    height: 480px;
    background-image: linear-gradient(-85deg, #615db5 37%, #df372f 50%, #df372f 50%, #cb336b 100%);
    position: absolute;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

#banner .container .dir .imagem{
    width: 476px;
    height: 476px;
    border-radius: 50%;
    background-color: #f0f0f1;
    z-index: 1;
    border: 16px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner .container .dir .imagem .redonda{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Box Culturas */

#cultura{
    margin-top: 79px;
    margin-bottom: 90px;
    position: relative;
}

#cultura::after{
    content: '';
    width: 100%;
    height: 578px;
    position: absolute;
    background-image: url(../../totem-de-pagamento/lp/carreiras/after-cultura.webp);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 15px;
    left: 0;
    z-index: -1;
}

#cultura .container{
    flex-direction: column;
}

#cultura .container .titulo{
    color: var(--preto);
    font-size: 32px;
    line-height: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

#cultura .container .texto{
    color: var(--preto);
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

#cultura .container .subtitulo{
    color: var(--vermelho);
    font-size: 22px;
    line-height: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

#cultura .container .boxes{
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espaço entre as boxes */
    justify-content: center; /* Centraliza as boxes */
    max-width: 1400px; /* Largura máxima para 2 colunas */
    margin: 0 auto; /* Centraliza o container */
}

#cultura .container .boxes .box{
width: 676px;
    height: auto;
    border-radius: 15px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    padding: 2.97vw 2vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: 0.3s all ease-in-out;
}

#cultura .container .boxes .box:hover {
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Sombra mais suave e maior */
}

#cultura .container .boxes .box img{
    width: 89px;
    height: 89px;
    border-radius: 50px;
    background-color: #ed394b;
    padding: 16px;
    margin-bottom: 21px;
}

#cultura .container .boxes .box .titulo{
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 30px;
    text-align: justify;
    color: var(--vermelho);
    font-weight: 700;
    margin-bottom: 15px;
}

#cultura .container .boxes .box .texto{
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: left;
    color: var(--preto);
    font-weight: 600;
}

/* Swiper */

#swiper{
    margin-bottom: 97px;
    position: relative;

}

#swiper::after{
    content: '';
    width: 100%;
    height: 532px;
    position: absolute;
    background-image: url(../../totem-de-pagamento/home/touchpay-bg-banner.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    top: 15px;
    right: 0;
    z-index: -1;
}

#swiper .container{
    flex-direction: column;

}

#swiper .container .titulo{
    font-size: 32px;
    line-height: 44px;
    color: var(--preto);
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}

#swiper .container .texto{
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 28px;
    color: #212121;
    font-weight: 400;
    text-align: center;
}

#swiper .container .swiper-container {
    position: relative;
    width: 90%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    cursor: grab;
    user-select: none;
    margin: 0 auto;
}

#swiper .container .swiper-container .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide {
    position: absolute;
    width: 69%;
    min-height: 262px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--branco);
    color: black;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    transform: scale(0.8) translateX(0);
    z-index: 1;
    cursor: grab;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 3;
    background-color: var(--preto);
    color: var(--branco);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide.active p{
    color: var(--branco) !important;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
    transform: scale(0.85) translateX(-559px);
    opacity: 0.7;
    z-index: 2;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide.next {
    transform: scale(0.85) translateX(462px);
    opacity: 0.7;
    z-index: 2;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content {
    padding: 0 77px;
    text-align: left;
    max-width: 77%;
    box-sizing: border-box;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content h2 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 30px;
    color: var(--vermelho);
    font-weight: 700;
    margin-bottom: 10px;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content p {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 25px;
    color: var(--preto);
    font-weight: 400;
}

#swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}


#swiper .container  .box-botoes {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 0 auto;
}

#swiper .container .box-botoes .vagas{
    border-radius: 25px;
    background: linear-gradient(-85deg, #df372f 0%, #cb336b 100%);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-align: center;
    color: var(--branco);
    padding: 17px 121.4px 17px 121.4px;
    transition: 0.3s all ease-in-out;;
    position: relative;
}

#swiper .container .box-botoes .vagas::before{
    content: '';
    background-image: url(../../totem-de-pagamento/home/touchpay-arrow-botoes-saiba.webp);
    width: 14px;
    height: 12px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    transition: 0.2s all ease-in-out;
}

#swiper .container  .box-botoes .vagas:hover::before{
    right: 10px;
}

#swiper .container  .box-botoes .vagas:hover{
    background: linear-gradient(-85deg, #615db5 0%, #615db5 100%);
}

/* Section do Vídeo */

#esperar .container .esq{
    width: 56%;
}

#esperar .container .esq .titulo{
    font-size: 32px;
    line-height: 44px;
    color: #212121;
    font-weight: 800;
    text-align: left;
    margin-bottom: 26px;
}

#esperar .container .esq .area-texto .texto{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

#esperar .container .esq .area-texto .texto .titulo{
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 28px;
    color: var(--vermelho);
    font-weight: 700;
    margin-bottom: 0;
    text-align: left;
}


#esperar .container .esq .area-texto .texto .text{
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 28px;
    color: var(--preto);
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
}



#esperar .container  .dir{
    margin-top: 115px;
    padding-left: 27px;
    width: 55.9%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#esperar .container .dir img{
    max-width: 674px;
    width: 90%;
    min-height: 548px;
    height: auto;
    object-fit: cover;
    border-radius: 45px;
}

#esperar .container .dir .play{
    width: 153px;
    height: 153px;
    z-index: 1;
    position: absolute;
    display: block;
    background-image: url(../../totem-de-pagamento/lp/carreiras/icons/icon-play.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

    .modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.8);
        align-items: center;
        justify-content: center;
    }
    
    .modal-content {
        position: relative;
        width: 80%;
        max-width: 900px;
        aspect-ratio: 16/9; /* Proporção do vídeo */
        background: #000;
    }
    
    .fechar {
        position: absolute;
        right: -15px;
        top: -15px;
        color: white;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        background: #000;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
    }
    
    #videoIframe {
        width: 100%;
        height: 100%;
        border: none;
    }

 /* Section Só quem Sabe */

    #sabe{
        background-image: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
        margin-top: 85px;
        
    }

    #sabe .container{
        padding-top: 30px;
        gap: 40px;
        margin-bottom: 56px;
    }

    #sabe .container .esq{
        width: 21%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }

    #sabe .container .esq .texto{
        font-size: 28px;
        line-height: 40px;
        color: #070707;
        font-weight: 400;

    }

    #sabe .container .esq .titulo{
        font-size: 57px;
        color: #070707;
        font-weight: 800;
        letter-spacing: 2.5px;
    }

    #sabe .container .dir{
    display: flex;
    background-color: var(--branco);
    height: 281px;
    align-items: center;
    column-gap: 33px;
    position: relative;
    box-shadow: rgba(212, 212, 212, 0.14) 0px 0px 30px 0px;
    border: 0.5px solid #e5e5e5;
    border-radius: 15px;
    padding: 57px 34px 51px;

    }

    #sabe .container .dir .esquerda{
        width: 38%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #sabe .container .dir .esquerda .imagem{
    width: 215px;
    height: 215px;
    border-radius: 50%;
    background-color: #f0f0f1;
    z-index: 1;
    border: 16px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    #sabe .container .dir  .esquerda .borda-gradiente{
    width: 219px;
    height: 219px;
    background-image: linear-gradient(-85deg, #615db5 37%, #df372f 50%, #df372f 50%, #cb336b 100%);
    position: absolute;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    }

    @keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

    #sabe .container .dir .direita{
        width: 67%;
        position: relative;
    }

    #sabe .container .dir .direita::after{
        content: '';
        background-image: url(../../totem-de-pagamento/lp/carreiras/icons/aspas.svg);
        width: 150px;
        height: 150px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: -41px;
        bottom: -48px;
        opacity: 0.02;
        transform: rotate(180deg);
    }

    #sabe .container .dir .direita .texto{
        font-size: 15px;
        line-height: 28px;
        color: var(--preto);
        font-weight: 500;
        margin-bottom: 18px;
    }

    #sabe .container .dir .direita .texto .aspas{
        width: 15px;
        height: 15px;
        opacity: 0.2;
        margin-left: -23px;
        margin-right: 5px;
    }

    #sabe .container .dir .direita .legenda-vitor {
        font-size: 14px;
        line-height: 16px;
        color: #615db5;
        font-weight: 700;
    }

    #sabe .container .dir .direita .texto-legenda{
        color:var(--preto);
        font-size: 14px;
        line-height: 25px;
        font-weight: 700;
    }

    #sabe .box-botoes{
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    }

    #sabe  .box-botoes .vagas{
    width: 20%;
    border-radius: 25px;
    background: linear-gradient(-85deg, #df372f 0%, #cb336b 100%);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-align: center;
    color: var(--branco);
    padding: 17px 80.4px 17px 80.4px;
    transition: 0.3s all ease-in-out;;
    position: relative;
    margin: 0 auto;
}

    #sabe .box-botoes .vagas::before{
        content: '';
        background-image: url(../../totem-de-pagamento/home/touchpay-arrow-botoes-saiba.webp);
        width: 14px;
        height: 12px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: 20px;
        transition: 0.2s all ease-in-out;
        
    }

    #sabe  .box-botoes .vagas:hover::before{
        right: 10px;
    }

    #sabe  .box-botoes .vagas:hover{
        background: linear-gradient(-85deg, #615db5 0%, #615db5 100%);
    }

    #sabe .swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    }

    #sabe .swiper-slide {
    display: flex;
    justify-content: center;
    }
    

    #sabe .box-botoes-swiper{
    display: flex;
    position: relative;
    width: 1400px;
    max-width: 90%;
    margin: 0 auto;
    bottom: 43px;
    flex-direction: row-reverse;
    column-gap: 5px;
    }

    #sabe .box-botoes-swiper>div{
        position: unset;
        margin: unset;
        width: unset;
        height: unset;
    }

    #sabe .box-botoes-swiper>div.botao-anterior-vantagens::after {
        content: '';
        background-image: url(../../totem-de-pagamento/home/seta-swiper.svg);
        width: 16px;
        height: 16px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        transform: rotate(90deg);
        filter: brightness(0) saturate(100%) invert(38%) sepia(29%) saturate(1193%) hue-rotate(210deg) brightness(91%) contrast(89%);
    }

    #sabe .box-botoes-swiper>div.botao-proximo-vantagens::after{
        content: '';
        background-image: url(../../totem-de-pagamento/home/seta-swiper.svg);
        width: 16px;
        height: 16px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        transform: rotate(-90deg);
        filter: brightness(0) saturate(100%) invert(38%) sepia(29%) saturate(1193%) hue-rotate(210deg) brightness(91%) contrast(89%);
    }

/*  Redes Sociais */ 
        #redes-sociais{
        width: 100%;
        padding-top: 42px;
        position: relative;
        z-index: 1;
        top: 57px;
    }

    #redes-sociais .container{
        width: 1288px;
        max-width: 90%;
        height: 256px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        background: linear-gradient(123deg, rgba(162, 38, 102, 1) -19%, rgba(79, 58, 161, 1) 101%);
        border-radius: 15px;
        padding: 0 83px;
        z-index: 1;
        position: relative;
    }

    #redes-sociais .container .esq {
        width: 44%;
    }

    #redes-sociais .container .esq .titulo{
        font-size: 52px;
        line-height: 64px;
        color: var(--branco);
        font-weight: 700;
    }

    #redes-sociais .container .separador{
        display: inline-block;
        height: 61%;
        background-color: var(--branco);
        width: 2px;
        margin-left: 54px;
        opacity: 0.7;
    }

    #redes-sociais .container .dir{
        display: flex;
        gap: 62px;
        justify-content: center;
        margin-left: 83px;
    }

    #redes-sociais .container .dir .glassdor img{
        opacity: 0.502;
        transition: 0.3s all ease-in-out;
    }

    #redes-sociais .container .dir .glassdor:hover img{
        opacity: 1;
    }


    #redes-sociais .container .dir .instagram img{
        width: 43px;
        height: 43px;
        filter: brightness(0) invert(1);
        opacity: 0.502;
        transition: 0.3s all ease-in-out;
    }

    #redes-sociais .container .dir .instagram:hover img{
        opacity: 1;
    }

    #redes-sociais .container .dir .linkedin img{
        width: 43px;
        height: 43px;
        opacity: 0.502;
        transition: 0.3s all ease-in-out;
    }

    #redes-sociais .container .dir .linkedin:hover img{
        opacity: 1;
    }


/* Media Querys */ 





@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1680px) {
    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-462px);
    }
}

@media screen and (max-width: 1600px) {
    #cultura .container .boxes .box {
        width: 626px;
    }

    #cultura .container .boxes .box {
        width: 580px;
    }

    #cultura .container .boxes .box .texto {
        line-height: 23px;
    }

    #swiper .container .swiper-container .swiper-wrapper {
        width: 90%;
        height: 90%;
    }

    #sabe .box-botoes .vagas {
        width: 22%;
    }

}

@media screen and (max-width: 1440px) {
    #banner .container .esq .titulo {
        font-size: 45px;
        width: 637px;
    }

    #banner .container .esq .texto {
        font-size: 14px;
        width: 624px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.next {
        transform: scale(0.85) translateX(425px);
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-425px);
    }

    #sabe .container .dir .esquerda {
        width: 27%;
    }

    #sabe .container .dir .direita .texto {
        line-height: 24px;
        text-align: left;
    }

    #sabe .box-botoes .vagas {
        width: 23%;
    }

    #sabe .container .dir .direita::after {
        right: -63px;
        bottom: -68px;
    }
}

@media screen and (max-width: 1366px) {
    #banner .container .dir .imagem {
        width: 429px;
        height: 429px;
    }

    #banner .container .dir .borda-gradiente {
        width: 435px;
        height: 435px;
    }

    #cultura .container .boxes .box {
        width: 563px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content {
        padding: 0 36px;
        max-width: 74%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content p {
        font-size: 16px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
        right: 39px;
    }

    #esperar .container .dir img {
        max-width: 714px;
        width: 100%;
    }

    #sabe .container .dir .direita::after {
        right: -61px;
        bottom: -51px;
    }

    #sabe .box-botoes .vagas {
        width: 28%;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 44px;
    }

}

@media screen and (max-width: 1280px) {
    #banner .container .esq .texto {
        font-size: 14px;
        width: 563px;
    }

    #banner .container {
        column-gap: 5%;
    }

    #cultura .container .boxes .box {
        width: 528px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.next {
        transform: scale(0.85) translateX(358px);
    }

        #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-358px);
    }

    #redes-sociais .container .esq .titulo {
        font-size: 40px;
    }
    
}

@media screen and (max-width: 1200px) {
    
    #banner .container .dir .imagem {
        width: 397px;
        height: 397px;
    }

    #banner .container .dir .borda-gradiente {
        width: 402px;
        height: 402px;
    }

    #cultura .container .boxes .box {
        width: 477px;
    }

    #sabe .container .dir .esquerda .imagem {
        width: 189px;
        height: 189px;
    }

    #sabe .container .dir .esquerda .borda-gradiente {
        width: 194px;
        height: 194px;
    }

    #sabe .container .dir .direita .texto {
        line-height: 20px;
    }

    #sabe .box-botoes .vagas {
        width: 30%;
    }

    .container .esq {
        width: 58%;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 33px;
    }

    
}

@media screen and (max-width: 1150px){
    #banner .container .esq .titulo {
        font-size: 37px;
        width: 582px;
    }

    #banner .container .esq .texto {
        padding: 0px 27px 0 0px;
        line-height: 24px;
    }

    #banner .container .dir .imagem {
        width: 366px;
        height: 366px;
    }

    #banner .container .dir .borda-gradiente {
        width: 370px;
        height: 370px;
    }



}


@media screen and (max-width: 1080px) {
    #banner .container .esq .titulo {
        font-size: 32px;
        width: 551px;
    }

    #banner .container .esq .texto br{
        display: none;
    }

    #banner .container .esq .texto {
        padding: 0px 50px 0 0px;
        letter-spacing: 0.5px;
        width: 556px;
    }

    #banner .container .esq {
        width: 49%;
    }

    #banner .container .dir {
        width: 45%;
    }

    #cultura .container .boxes .box {
        width: 448px;
    }

    #swiper{
        overflow: hidden;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide {
        width: 76%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content p {
        font-size: 14px;
        line-height: 23px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content h2 {
        font-size: 16px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.next {
        transform: scale(0.85) translateX(317px);
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-317px);
    }

    #esperar .container .esq .titulo {
        font-size: 28px;
    }

    #esperar .container .esq .area-texto .texto .titulo {
        font-size: 18px;
    }

    #esperar .container .esq .area-texto .texto .text {
        font-size: 14px;
        line-height: 23px;
    }

    #sabe .container .esq {
        width: 17%;
    }


    #sabe .container .esq .texto {
        font-size: 23px;
    }

    #sabe .container .esq .titulo {
        font-size: 44px;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 29px;
    }

    #cultura .container .boxes {
        gap: 25px;
    }

}


@media screen and (max-width: 1024px) {
    #banner{
        overflow: hidden;
    }

    #banner .container {
        flex-direction: column-reverse;
    }

    #banner .container .dir {
        width: 90%;
    }

    #banner .container .esq {
        width: 90%;
    }

    #banner .container .dir .imagem {
        width: 466px;
        height: 466px;
    }

    #banner .container .dir .borda-gradiente {
        width: 472px;
        height: 472px;
    }

    #banner .container .esq .titulo {
        font-size: 45px;
        width: 604px;
    }

    #banner .container .esq .texto {
        padding: 0px 0px 0px 0px;
        letter-spacing: 0.5px;
        width: 816px;
        font-size: 20px;
        line-height: 27px;
    }

    #cultura .container .boxes .box {
        width: 97%;
    }

    #cultura .container .boxes .box .titulo {
        padding-left: 10px;
    }

    #cultura .container .boxes .box .texto {
        padding: 0 10px;
    }

    #swiper {
        margin-bottom: 80px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.active {
        width: 95%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.next {
        transform: scale(0.85) translateX(233px);
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-233px);
    }

    #esperar .container{
        flex-direction: column-reverse;
    }

    #esperar .container .esq {
    width: 90%;
    }

    #esperar .container .dir {
        width: 90%;
        margin-bottom: 48px !important;
        margin: 0 auto;
        padding-left: 0;
    }

    #esperar .container .esq .titulo {
        font-size: 34px;
    }

    #esperar .container .esq .area-texto .texto .titulo {
        font-size: 20px;
    }

    #esperar .container .esq .area-texto .texto .text {
        font-size: 17px;
        line-height: 28px;
    }

    #sabe .container {
        flex-direction: column;
    }

    #sabe .container .esq {
        width: 90%;
        align-items: baseline;
    }

    #sabe .container .esq .texto {
        font-size: 34px;
        line-height: 47px;
    }

    #sabe .container .dir {
        padding: 47px 5px 46px;
        flex-direction: column;
        height: auto;
    }

    #sabe .container .dir .esquerda {
        width: 96%;
        margin-bottom: 34px;
    }

    #sabe .container .dir .direita {
        width: 90%;
        position: relative;
        padding: 0 20px;
    }

    #sabe .container .esq .titulo {
        font-size: 64px;
    }

    #sabe .box-botoes .vagas {
        width: 36%;
    }

    #sabe .container .dir .direita::after {
        right: -53px;
        bottom: -60px;
    }

    #redes-sociais .container {
        flex-direction: column;
    }

    #redes-sociais .container .esq {
        width: 90%;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 17px;
        border-bottom: 1px solid white;
    }

    #redes-sociais .container .separador {
        display: none;
    }

    #redes-sociais .container .dir {
        margin: 0 auto;
        padding-top: 33px;
    }

}

section:not(#banner, #cultura, #swiper, #esperar, #sabe, #redes-sociais){
    display: none;
}

@media screen and (max-width: 996px) {
    #sabe .box-botoes .vagas {
        width: 47%;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 26px;
    }


    #redes-sociais .container .dir .instagram img {
        width: 41px;
        height: 41px;
    }

    #redes-sociais .container .dir .linkedin img {
        width: 41px;
        height: 41px;
    }



}

@media screen and (max-width: 768px) {
    #banner .container .esq .titulo {
        font-size: 38px;
        width: 498px;
    }

    #banner .container .esq .texto {
        font-size: 18px;
    }

    #swiper .container .titulo {
        font-size: 31px;
    }

    #swiper .container .swiper-container {
        width: 95%;
    }


    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.active {
        width: 100%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-201px);
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.next {
        transform: scale(0.85) translateX(201px);
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content {
        padding: 0 36px;
        max-width: 69%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content h2 {
        font-size: 15px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content p {
        font-size: 14px;
        line-height: 22px;
    }

    #redes-sociais .container {
        height: auto;
        padding: 45px 45px;
    }

    #redes-sociais .container .esq {
        width: 100%;
        padding-top: 0px;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 24px;
    }


}

@media screen and (max-width: 680px){
    #banner .container .dir {
        padding: 30px 0;
    }

    #cultura .container .titulo {
        font-size: 29px;
        margin-bottom: 22px;
    }

    #cultura .container .texto {
        font-size: 15px;
        line-height: 25px;
    }

    #cultura .container .subtitulo {
        font-size: 20px;
    }

    #swiper {
        overflow: hidden;
    }


    #swiper .container .titulo {
        font-size: 27px;
        margin-bottom: 23px;
    }

    #swiper .container .texto {
        font-size: 15px;
    }

    #swiper .container .swiper-container .swiper-wrapper {
        width: 95%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content h2 {
        line-height: 17px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
        right: 23px;
    }

    #sabe .box-botoes .vagas {
        width: 57%;
    }

    #redes-sociais .container .esq .titulo {
        line-height: 40px;
    }    
    
}

@media screen and (max-width: 600px) {
    #banner .container .esq .titulo {
        font-size: 29px;
        width: 430px;
        margin-bottom: 10px;
    }

    #banner .container .dir .borda-gradiente {
        width: 83.3vw;
        height: 83.3vw;
    }

    #banner .container .dir .imagem{
        width: 81.5vw;
        height: 81.5vw;
    }

    #banner .container .esq .texto {
        line-height: 25px;
        font-size: 16px;
    }

    #swiper .container .titulo {
        font-size: 25px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.prev {
        transform: scale(0.85) translateX(-166px);
        width: 90%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.next{
        transform: scale(0.85) translateX(166px);
        width: 90%;
    }

    #esperar .container .dir {
        width: 100%;
    }

    #esperar .container .esq .titulo {
        font-size: 28px;
    }

    .modal-content {
        width: 95%;
        aspect-ratio: 10 / 9;
    }

    #sabe .box-botoes .vagas {
        width: 63%;
    }
}

@media screen and (max-width: 490px) {
    #banner{
        background-size: 40% auto;
    }

    #banner .container .esq .titulo {
        font-size: 27px;
    }

    #banner .container .esq .texto {
        line-height: 23px;
        font-size: 15px;
    }

    #banner .container .esq .box-botoes .vagas {
        padding: 17px 65.4px 17px 65.4px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide {
        flex-direction: column;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content {
        padding: 20px 0px;
        max-width: 90%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide {
        padding: 20px;
    }

    #swiper .container .swiper-container .swiper-wrapper {
        width: 100%;
    }

    .swiper-wrapper .swiper-slide .slide-content {
        padding: 0 32px;
        max-width: 64%;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
        width: 152px;
        height: 152px;
        position: relative;
        transform: none;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        right: 0;
    }

    #esperar .container .esq .titulo {
        font-size: 23.8px;
        line-height: 28px;
    }

    #sabe .box-botoes .vagas {
        width: 68%;
    }

    #redes-sociais .container .dir {
        flex-direction: column;
        margin: 0;
        width: 90%;
        align-items: center;
    }
}

@media screen and (max-width: 460px) {
    .modal-content {
        width: 95%;
        aspect-ratio: 6 / 9;
    }
}

@media screen and (max-width: 430px) {
    #banner .container .esq .titulo {
        font-size: 25px;
        margin-bottom: 5px;
        line-height: 53px;
    }

    #swiper .container .box-botoes .vagas {
        padding: 17px 90.4px 17px 90.4px;
    }

    #sabe .box-botoes .vagas {
        width: 72%;
        padding: 17px 70.4px 17px 70.4px;
    }
}

@media screen and (max-width: 400px) {
    #banner .container .esq .titulo {
        font-size: 23px;
        }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
        width: 120px;
        height: 120px;
    }

    #esperar .container .esq .titulo {
        font-size: 21px;
        line-height: 26px;
    }

    #esperar .container .esq .area-texto .texto .titulo {
        font-size: 18px;
        
    }

    #esperar .container .esq .area-texto .texto .text {
        font-size: 15px;
        line-height: 26px;
    }

    
    #sabe .box-botoes .vagas {
        width: 72%;
        padding: 17px 58.4px 17px 58.4px;
    }
}

@media screen and (max-width: 380px){
    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content p {
        font-size: 14px;
        line-height: 19px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide.active {
        width: 111%;
    }

    #swiper .container .box-botoes .vagas {
        padding: 17px 69.4px 17px 69.4px;
    }
}

@media screen and (max-width: 360px) {
    #banner .container .esq .titulo {
        font-size: 21px;
        line-height: 36px;
    }

    #banner .container .esq .texto {
        line-height: 21px;
        font-size: 14px;
    }

    #banner .container .esq .box-botoes .vagas {
        padding: 17px 54.4px 17px 54.4px;
        font-size: 14px;
    }

    #cultura .container .boxes .box .texto {
        line-height: 22px;
        font-size: 14px;
    }

    #cultura .container .boxes .box .titulo {
        font-size: 16px;
    }

    #sabe .box-botoes .vagas {
        width: 76%;
        padding: 17px 44.4px 17px 44.4px;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 22px;
    }

}

@media screen and (max-width: 330px) {
    #banner .container .esq .titulo {
        font-size: 20px;
        line-height: 27px;
        }

    #banner .container .esq .box-botoes .vagas {
        padding: 17px 42.4px 17px 42.4px;
        font-size: 14px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
        width: 105px;
        height: 105px;
    }

    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-image {
        right: 13px;
    }

    #swiper .container .box-botoes .vagas {
        padding: 17px 42.4px 17px 42.4px;
    }

    #sabe .box-botoes .vagas {
        font-size: 14px;
    }

    #redes-sociais .container .esq .titulo {
        font-size: 18px;
        line-height: 32px;
    }

}

@media screen and (max-width: 310px){
    #swiper .container .swiper-container .swiper-wrapper .swiper-slide .slide-content p {
        font-size: 13px;
        line-height: 19px;
    }

    #sabe .box-botoes .vagas {
        width: 76%;
        padding: 17px 34.4px 17px 34.4px;
    }
}

@media screen and (max-width: 280px) {}
