:root {
    --padding-lateral: 12.5%;
}

.btn1, .btn2. btn3, .btn4{
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    max-width: 100%;
}
.btn1{

    &:hover{
        color: var(--color-text);
        border: 1px solid var(--color-white);
        background: var(--color-white);
    }
}
.btn3{

    border: 1px solid var(--color-yellow);
    &:hover{
        color: var(--color-yellow);
        border: 1px solid var(--color-yellow);
        background: transparent;
    }
}
.btn4{
    background-color: transparent;
    width: 220px;
    padding: 17px 10px;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    font-family: var(--font-family-text);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.9rem;
    text-transform: uppercase;
    vertical-align: middle;

    img{
        margin-right: 10px;
    }

    &:hover{
        color: var(--color-yellow);
        border: 1px solid var(--color-text);
        background: var(--color-text);
    }
}
@media screen and (max-width: 766px) {
    :root {
        --padding-lateral: 15px;
    }
}
footer {
    z-index: 1;
    position: relative;
    .btn1, .btn3 {
        max-width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    html{
        font-size: 60%;
    }
}
@media screen and (max-width: 992px) {
    html{
        font-size: 50%;
    }
}
/*==================================================================================================*/
/*CARRETOS GROUP*/
/*==================================================================================================*/

.banner_interno{
    .banner{
        .holder_slider{
            .single_banner{
                position: relative;

                .img {
                    position: relative;
                    padding-bottom: 57.25%;
                    overflow: hidden;
                    img{
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                        top: 0;
                        left: 0;
                    }
                }

                .conteudo{
                    position: absolute;
                    top: 50%;

                    -webkit-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    transform: translateY(-50%);
                    width: 100%;
                    padding: 0 12%;
                    color: var(--color-white);

                    .nome{
                        font-weight: 600;
                        font-size: 7.5rem;
                        line-height: 1.07;
                        margin-bottom: 35px;
                        margin-top: 85px;
                        max-width: 630px;
                        color: var(--color-yellow);
                    }

                    .descricao{
                        font-weight: 400;
                        font-size: 2.0rem;
                        line-height: 1.07;
                        margin-bottom: 35px;
                    }

                }

            }
        }
    }

    @media screen and (max-width: 1400px) {
        .banner{
            .holder_slider{
                .single_banner{
                    .conteudo{
                        .nome{
                            font-size: 6rem;
                        }

                        .descricao{

                        }

                    }

                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        .banner{
            .holder_slider{
                .single_banner{
                    .img {
                        padding-bottom: 84.25%;
                    }
                    .conteudo{
                        .nome{
                            font-size: 5.5rem;
                        }

                        .descricao{

                        }

                    }

                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        .banner{
            .holder_slider{
                .single_banner{
                    .img {
                        padding-bottom: 84.25%;
                    }
                    .conteudo{
                        .nome{
                            font-size: 4.5rem;
                        }

                        .descricao{

                        }

                    }

                }
            }
        }
    }
    @media screen and (max-width: 567px) {
        .banner{
            .holder_slider{
                .single_banner{
                    .img {
                        padding-bottom: 150%;
                    }
                    .conteudo{
                        .nome{
                            font-size: 4.5rem;
                        }

                        .descricao{

                        }

                    }

                }
            }
        }
    }
}

#carretos_group{


    .bloco{
        color: var(--color-white);

        &.historia{
            background-repeat: no-repeat;
            background-position: left top;
            padding: 200px var(--padding-lateral) 0;

            h2{
                color: var(--color-yellow);
            }
            .img{
                position: sticky;
                top: 30px;

                img{
                    width: 100%;
                }
            }
        }

        .btn-holder{
            a{
                display: inline-block;
                width: 220px;
                padding: 20px 10px;
                font-weight: 700;
                color: var(--color-white);
                margin: 25px 0px;
                border: 1px solid var(--color-white);
                text-align: center;
                text-transform: uppercase;
            }
        }
    }

    .missao_visao{
        .missao{
            color: var(--color-white);
            .container-fluid .row .col-lg-6{
                .info{
                    display: flex;
                    padding: var(--padding-lateral);
                    align-items: center;
                    background-color: #1F1F1F;
                    min-height: 100%;
                    position: relative;
                    &:after{
                        content: '';
                        position: absolute;
                        top: 15%;
                        -webkit-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        transform: translateY(-50%);
                        z-index: 2;
                        width: 44px;
                        height: 36px;
                    }

                    h2{
                        margin-bottom: 35px;
                        max-width: 200px;
                    }

                    .text{
                        max-width: 400px;
                    }
                    .desc{
                        font-size: 2.0rem;
                        font-weight: 700;
                    }
                }

                .img{
                    height: 100%;
                    position: relative;

                    &:before{
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 2;

                        -webkit-transition: .3s ease-in-out;
                        -moz-transition: .3s ease-in-out;
                        -o-transition: .3s ease-in-out;
                        transition: .3s ease-in-out;
                        background: transparent;
                    }

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: relative;
                        z-index: 1;
                    }
                }
            }

            &:nth-child(odd){
                .container-fluid .row .col-lg-6:first-child{
                    order: 2;
                    @media screen and (max-width: 992px) {
                        &{
                            order: 1;
                        }
                    }
                }
                .container-fluid .row .col-lg-6:last-child{
                    order: 1;
                    @media screen and (max-width: 992px) {
                        &{
                            order: 2;
                        }
                    }
                }
            }


            &:nth-child(odd){
                .container-fluid .row .col-lg-6:first-child{
                    .info::after{
                        background-image: url(/site/imagens/arrow_servicos_left.svg);
                        background-size: 100% 100%;
                        left: -30px;
                    }
                }
            }

            &:nth-child(even){
                .container-fluid .row .col-lg-6:first-child{
                    .info::after{
                        background-image: url(/site/imagens/arrow_servicos_right.svg);
                        background-size: 100% 100%;
                        right: -30px;
                    }

                    @media screen and (max-width: 992px) {
                        .info::after{
                            visibility: hidden;
                            opacity: 0;
                            height: 0;
                        }
                    }

                }
            }

            .img:before{
                background: rgba(177, 154, 85, 0.69) !important;
                mix-blend-mode: hard-light;
            }

        }
    }
    .como_fazemos{
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        color: var(--color-white);
        .info{
            padding: 77px var(--padding-lateral);
            .holder_info{
                max-width: 400px;
                h2{
                    max-width: 200px;
                    margin-bottom: 35px;
                }
            }
        }
    }

    .experiencia{
        max-width: 1270px;
        margin: 0 auto;
        position: relative;
        padding: 77px var(--padding-lateral) 77px 0;

        .info{
            width: 50%;
            margin-left: auto;
            margin-top: -10%;
            color: var(--color-white);
            text-align: left;
            h2{
                max-width: 600px;
                text-align: left;
                color: var(--color-yellow);
                margin-bottom: 35px;
            }
            table,
            table tr,
            table tr td{
                border: none;
            }

            table{
                margin-top: 20px;
                font-weight: 600;
            }
            img{
                width: 23px !important;
                height: 23px !important;
                object-fit: contain;
                margin-right: 10px;
            }
        }
        .img{
            text-align: left;
            width: 90%;

            img{
                width: 100%;
            }
        }

    }
    .equipa{
        background: var(--color-yellow);
        .holder_equipa{
            padding: 77px var(--padding-lateral);
            h2.titulo{
                margin-bottom: 40px;
                font-weight: 600;
                font-size: 7.5rem;
                line-height: 1.07;
            }
            .row{
                align-items: center;
            }

            .info{
                padding-left: 54px;
                h2{
                    color: var(--color-text);
                }
                .descricao{
                    font-style: italic;
                    margin-bottom: 35px;
                }
            }
        }
        .holder_equipa_imagem{
            /* padding-left: var(--padding-lateral); */
            overflow: hidden;
            margin-bottom: -20px;
            margin-left: -20px;
            .linha{
                overflow: hidden;
                display: flex;
                flex-wrap: wrap;
                .single_imagem{
                    padding: 10px 0 10px 20px;
                    .img{
                        width: 100%;
                        position: relative;
                        overflow: hidden;
                        img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    &.img_0 .img{
                        padding-bottom: 82%;
                    }
                    &.img_1 .img{
                        padding-bottom: Calc(122% + 12.5px);
                    }
                    &.img_2 .img{
                        padding-bottom: 115%;
                    }
                    &.img_3 .img{
                        padding-bottom: 121%;
                    }
                    &.img_4 .img{
                        padding-bottom: 60%;
                    }
                    &.img_5 .img{
                        padding-bottom: 95.7%;
                    }
                }
                &:nth-child(odd){
                    .coluna:nth-child(odd){
                        width: 60%;
                    }
                    .coluna:nth-child(even){
                        width: 40%;
                    }
                }
                &:nth-child(even){
                    .coluna:nth-child(odd){
                        width: 40%;
                    }
                    .coluna:nth-child(even){
                        width: 60%;
                    }
                }
            }
        }

    }

    @media screen and (max-width: 1400px) {
        .equipa {
            .holder_equipa {
                h2.titulo {
                    font-size: 6rem;
                }
            }
        }
    }

    @media screen and (max-width: 1200px) {
        .bloco{
            &.historia{
                padding-top: 77px;
                .img{
                    padding-left: 30px;
                }
            }
        }
        .equipa {
            .holder_equipa {
                h2.titulo {
                    font-size: 6.5rem;
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        .bloco{
            &.historia{
                .img{
                    margin-top: 30px;
                    padding-left: 0;
                }
            }
        }

        .missao_visao{
            .missao{
                .container-fluid .row .col-lg-6{
                    .info{

                        .text{
                            max-width: 100%;
                        }
                    }


                }
            }
        }

        .experiencia{
            padding: 77px var(--padding-lateral);

            .info{
                width: 100%;
                margin-top: 30px;
            }
            .img{
                width: 100%;
            }

        }

        .equipa{
            background: var(--color-yellow);
            .holder_equipa{
                padding: 77px var(--padding-lateral);
                h2.titulo{
                    font-size: 5.5rem;
                }
                .row{
                    align-items: center;
                }
                .info{
                    padding-left: 0;
                    margin-top: 30px;
                }
            }

            .holder_equipa_imagem{
                padding-left: 0;
                overflow: hidden;
                .linha {
                    .single_imagem {
                        padding: 5px 0 5px 10px;
                        &.img_1 .img {
                            padding-bottom: Calc(122% + 7.5px);
                        }
                    }
                }
            }
        }
    }
}

#bloco_marcas{


    .marcas{
        padding: 155px 15px;

        h3{
            font-weight: 700;
            b{
                color: var(--color-yellow);
            }
        }

        .slider_marcas {
            margin-top: 100px;

            .img {
                padding: 0 25px;

                img {
                    width: 186px;
                    height: 70px;
                    object-fit: contain;
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        .marcas{
            padding-top: 77px;
            padding-bottom: 77px;
            .slider_marcas {
                margin-top: 50px;
            }
        }
    }

}
/*==================================================================================================*/
/*AJUDA*/
/*==================================================================================================*/
#ajuda{
    color: var(--color-white);
    h4.titulo{
        color: var(--color-yellow);
        margin-bottom: 35px;
        font-weight: 600;
        font-family: var(--font-family-text);
    }
    .intro{
        padding: 200px var(--padding-lateral) 77px;
        .holder_intro{
            max-width: 550px;
            h1{
                color: var(--color-yellow);
                margin-bottom: 35px;
                font-weight: 600;
                font-size: 7.5rem;
                line-height: 1.07;
            }
        }

    }
    .topicos{
        padding: 0 var(--padding-lateral);
        .holder_topicos{
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            .single_topico{
                background: var(--color-yellow);
                border: 1px solid var(--color-yellow);
                font-weight: 500;
                font-size: 14px;
                line-height: 21px;
                text-align: center;
                color: var(--color-text);
                padding: 10px;
                width: 130px;
                cursor: pointer;
                transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                display: inline-flex;
                flex-wrap: wrap;
                align-content: space-around;
                align-items: stretch;
                justify-content: center;
                .img{
                    position: relative;
                    width: 63px;
                    margin: 0 auto 10px;
                    img{
                        width: 63px;
                        height: 57px;
                        object-fit: contain;
                        object-position: center;
                    }
                    img.hover{
                        position: absolute;
                        opacity: 0;
                        visibility: hidden;
                        top: 0;
                        left: 0;
                    }
                }
                &:hover,
                &.active{
                    background: transparent;
                    color: var(--color-yellow);
                    img.principal{
                        opacity: 0;
                        visibility: hidden;
                    }
                    img.hover{
                        opacity: 1;
                        visibility: visible;
                    }
                }
            }
        }
        .descricao_topico{
            margin-top: 40px;
            .holder_descricao_topico{
                border: 1px solid var(--color-yellow);
                padding: 45px;
                a{
                    color: var(--color-yellow);
                    text-decoration: underline;
                }
            }
        }
    }
    .faqs{
        padding: 77px var(--padding-lateral);
        .holder_faqs{
            margin: 0 auto;
            .pergunta{
                cursor: pointer;
                .cabecalho{
                    position: relative;
                    padding-bottom: 10px;
                    padding-right: 45px;
                    h4{
                        font-weight: 600;
                        font-family: var(--font-family-text);
                    }
                    span{
                        position: absolute;
                        color: var(--color-yellow);
                        top: 12px;
                        /* left: 0; */
                        font-size: 26px;
                        right: 0;
                        transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                    }
                }
                &.open .cabecalho span{
                    transform: rotate(180deg);
                    -moz-transform: rotate(180deg);
                    -webkit-transform: rotate(180deg);
                }
            }
            .resposta {
                display: none;
                padding-top: 20px;
                ul,ol{
                    padding-left: 40px;
                    margin-top: 10px;
                    li{
                        padding: 5px 0;
                    }
                }
            }
        }
    }
    .faqs .holder_faqs .single_faq{
        margin-bottom: 40px;
    }
    .faqs .holder_faqs .single_faq:last-child{
        margin-bottom: 0;
    }

    @media screen and (max-width: 1400px){
        .faqs .holder_faqs .pergunta .cabecalho h2 {
            font-size: 30px;
            line-height: 35px;
        }

        .faqs .holder_faqs .pergunta .cabecalho span {
            top: 8px;
        }

        .faqs .holder_faqs {
            width: 80%;
        }
        .intro {
            .holder_intro{
                h1{
                    font-size: 6rem;
                }
            }

        }
    }

    @media screen and (max-width: 1200px){
        .faqs .holder_faqs {
            width: 100%;
        }


        .intro {
            .holder_intro{
                h1{
                    font-size: 5.5rem;
                }
            }

        }
    }

    @media screen and (max-width: 992px){
        .intro {
            padding: 100px var(--padding-lateral) 77px;
            .holder_intro{
                h1{
                    font-size: 4.5rem;
                }
            }

        }
        .topicos {
            .holder_topicos {
                gap: 15px;
            }
        }
        .faqs .holder_faqs .pergunta .cabecalho h2 {
            font-size: 25px;
            line-height: 30px;
        }

        .faqs .holder_faqs .pergunta .cabecalho span {
            top: 6px;
            font-size: 23px;
        }

        .faqs .holder_faqs .resposta p, .faqs .holder_faqs .resposta {
            font-size: 16px;
            line-height: 22px;
        }
    }

    @media screen and (max-width: 767px){
        .intro {
            padding: 60px var(--padding-lateral);
            .holder_intro{
                h1{
                    font-size: 4rem;
                }
            }

        }
        .faqs .holder_faqs .pergunta .cabecalho h2 {
            font-size: 21px;
            line-height: 26px;
        }

        .topicos {
            .holder_topicos {
                gap: 15px;
                .single_topico {
                    font-size: 12px;
                    line-height: 15px;
                    width: 95px;
                    .img {
                        width: 45px;
                        img {
                            width: 45px;
                            height: 45px;
                        }
                    }
                }

            }
            .descricao_topico {
                .holder_descricao_topico {
                    padding: 15px;
                }
            }
        }

    }
}

/*==================================================================================================*/
/*BLOG*/
/*==================================================================================================*/
#blog{
    .pagina_noticias {
        h1,h2{
            color: var(--color-yellow);
            margin-bottom: 60px;
        }
        padding: 150px var(--padding-lateral) 77px;
        color: var(--color-white);
        #load-noticias-blog.display_none{
            display: none !important;
        }
        .noticias-loading-blog{
            display: none;
        }

        .listagem_noticias{
            display: flex;
            flex-wrap: wrap;
            .single_noticia{
                width: Calc(100% / 3);
                padding: 10px;
                .holder_single_noticia{
                    height: 100%;
                    background: var(--color-yellow);
                    color: var(--color-text);
                    display: flex;
                    flex-wrap: wrap;
                    align-content: start;
                    .imagem{
                        position: relative;
                        overflow: hidden;
                        padding-bottom: 70%;
                        width: 100%;
                        img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            object-fit: cover;
                            object-position: center;
                            width: 100%;
                            height: 100%;
                        }
                    }
                    .info{
                        padding: 25px 30px;
                        display: flex;
                        flex-wrap: wrap;
                        align-content: space-between;
                        min-height: 260px;
                        h4{
                            font-weight: 500;
                            font-family: var(--font-family-text);
                            width: 100%;
                        }
                        a{

                            display: block;
                            width: 100%;
                        }
                        button{
                            width: 100%;
                            margin-top: 30px;
                        }
                    }
                }
                &.destaque{
                    margin-bottom: 60px;
                    width: 100%;
                    padding: 10px 0;
                    .holder_single_noticia{
                        background: transparent;
                        color: var(--color-white);
                        .imagem{
                            padding-bottom: 30%;
                            width: 50%;
                        }
                        .info{
                            width: 50%;
                            padding-left: 50px;
                            min-height: unset;
                            align-content: flex-start;
                            padding-right: 0;
                            .descricao{
                                margin-top: 20px;
                            }
                            h3{
                                color: var(--color-yellow);
                            }
                            button{
                                width: 220px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media screen and (max-width: 992px){
        .pagina_noticias {
            padding: 100px var(--padding-lateral) 77px;
            h2{
                text-align: left !important;
            }
            .listagem_noticias {
                .single_noticia {
                    width: 100%;
                    padding: 10px 0;
                    .holder_single_noticia {
                        .info {
                            min-height: unset;
                        }
                    }
                    &.destaque {
                        .holder_single_noticia {
                            .imagem {
                                padding-bottom: 50%;
                                width: 100%;
                            }
                            .info {
                                width: 100%;
                                padding-left: 0;
                                min-height: unset;
                                padding-right: 0;
                            }
                            button {
                                display: block;
                                margin: 30px auto 0 auto;
                            }
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px){
        .pagina_noticias {
            padding: 60px var(--padding-lateral);
        }
    }
}

/*==================================================================================================*/
/*NOTICIA*/
/*==================================================================================================*/
#noticia{
    .banner_noticia{
        .img{
            position: relative;
            padding-bottom: 32.25%;
            overflow: hidden;
            img{
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                top: 0;
                left: 0;
            }
        }
    }
    .info_noticia{
        padding: 77px var(--padding-lateral);
        color: var(--color-white);
        .holder_info_noticia{
            max-width: 710px;
            margin: 0 auto;
            h1, h2{
                color: var(--color-yellow);
                font-weight: 500;
                margin-bottom: 70px;
                line-height: 1.08;
            }
            .text{
                h3{
                    color: var(--color-yellow);
                    font-family: var(--font-alt-text);
                    font-weight: 600;
                    font-size: 2.0rem;
                    line-height: 2.3rem;
                }
                ul,ol{
                    padding-left: 40px;
                    margin-top: 10px;
                    li{
                        padding: 5px 0;
                    }
                }
            }
        }

    }
}



/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/
#contactos{
    .info_contactos{
        background: var(--color-yellow);
        display: flex;
        flex-wrap: wrap;
        .holder_info_contactos{
            width: 50%;
            padding: 100px var(--padding-lateral);
            h1{
                font-size: 7.5rem;
                line-height: 100%;
                margin-bottom: 35px;
            }
            .single_cat{
                margin-bottom: 35px;
                .text{
                    font-size: 16px;
                }

                .single_contacto{
                    display: flex;
                    margin-top: 35px;
                    align-items: center;
                    flex-wrap: wrap;
                    .nome{
                        width: 100%;
                        img{
                            width: 145px;
                        }
                    }
                    .icon{
                        width: 36px;
                        svg{
                            max-width: 100%;
                        }
                    }
                    .info{
                        width: Calc(100% - 36px);
                        padding-left: 20px;
                    }
                }
            }
        }
        .imagem{
            width: 50%;
            position: relative;
            img{
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                top: 0;
                left: 0;
            }
        }
    }
    .formulario{
        padding: 77px var(--padding-lateral);
        color: var(--color-white);
        h3{
            color: var(--color-yellow);
            margin-bottom: 35px;
        }
        .holder_form_group{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            .form-group{
                width: Calc(50% - 10px);
            }
        }
        .form-group{
            label{
                font-weight: 600;
            }

            .required{
                font-weight: 600;
                font-size: 3.2rem;
                line-height: 4.8rem;
                color: var(--color-yellow);
            }
            &.rgpd{
                margin-bottom: 25px;
            }
            .select2-container{
                margin-bottom: 25px;
                width: 100% !important;
            }
            .select2-container--default .select2-selection--single .select2-selection__placeholder {
                color: var(--color-white);
                line-height: inherit;
            }
            .select2-container--default .select2-selection--single {
                background-color: transparent;
                border: 1px solid var(--color-yellow);
                border-radius: 0;
                height: auto;
            }
            .select2-container .select2-selection--single .select2-selection__rendered {
                font-size: 2.0rem;
                line-height: 3.0rem;
                color: #fff;
                padding: 18px 40px 18px 22px;
            }
            .select2-container--default .select2-selection--single .select2-selection__arrow b {
                border-color: var(--color-yellow) transparent transparent transparent;
                border-width: 10px 9px 0 9px;
                margin-left: -8px;
            }
            .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
                border-color: transparent transparent var(--color-yellow) transparent;
                border-width: 0 9px 10px 9px;
            }
            .select2-container--default .select2-selection--single .select2-selection__arrow {
                top: 17px;
                right: 20px;
            }
        }
    }
    
    @media screen and (max-width: 1400px) {
        .info_contactos {
            .holder_info_contactos {
                h1 {
                    font-size: 6.5rem;
                }
            }
        }
    }
    @media screen and (max-width: 1200px) {
        .info_contactos {
            .holder_info_contactos {
                h1 {
                    font-size: 6rem;
                }
            }
        }
    }
    @media screen and (max-width: 992px) {
        .info_contactos {
            .holder_info_contactos {
                width: 100%;
                padding: 150px var(--padding-lateral) 77px;
                h1 {
                    font-size: 5rem;
                }
            }
            .imagem {
                width: 100%;
                position: relative;
                padding-bottom: 100%;
            }
        }
    }
    @media screen and (max-width: 767px) {
        .info_contactos {
            .holder_info_contactos {
                padding: 60px var(--padding-lateral);
                h1 {
                    font-size: 4rem;
                }
            }
        }
        .formulario{
            .holder_form_group{
                gap: 0;
                .form-group{
                    width: 100%;
                }
            }
        }
    }
}

.select2-dropdown {
    background-color: var(--color-text);
    border: 1px solid var(--color-yellow);
    border-radius: 0;
    color: #fff;
    font-weight: 500;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-yellow);
    color: var(--color-text);
}