@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* font-family: 'Rubik' */
:root {
    --primaria-1: #1C5D39;
    --primaria-2: #37AB51;
    --primaria-3: #FFD733;
    --text-color: #000000;
}

body, html {
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
}
img {
    /* max-width: 100%; */
    height: auto;
    width: 100%;
    object-fit: cover;
}
p {
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-color);
    margin: unset;
}
h1, h2 {
    color: var(--primaria-1);
    font-family: 'Rubik';
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.9px;
    margin: 0;
}
h3, h4 {
    color: var(--primaria-1);
    font-family: 'Rubik';
    font-size: 21px;
    font-weight: 800;
    line-height: normal;
}
a { 
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    cursor: pointer;
    text-decoration: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a:hover {
    color: var(--text-color);
}
strong {
    font-weight: 600;
}
.grecaptcha-badge {
    visibility: hidden;
}
/* SCROLL */
body::-webkit-scrollbar, .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 10px;
    background:rgb(204, 204, 204);
}
body::-webkit-scrollbar-thumb,  .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background-color: var(--primaria-3);
    border-radius: 5px;
}
::selection {
    background: rgba(204, 204, 204, 0.3);
    

}
/* FIM SCROLL */

/** INICIO BREADCRUMB */
    .breadcrumb {
        background: #fce8d04a;
        padding: 5px 0;
        margin: 0;
        position: absolute;
        width: 100%;
    }
    span.breadcrumb-title {
        font-size: 15px;
        font-weight: 700;
    }
    a.breadcrumb-page {
        font-size: 15px;
    }
    span.breadcrumb-marker {
        padding: 0 5px;
        color: var(--text-color);
    }
/** FIM BREADCRUMB */

/** INICIO BOTÕES */
    
    .button {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
    button.botao-verde {
        border: 1px solid var(--primaria-2);
        border-radius: 5px;
        padding: 10px 15px;
        background: var(--primaria-2);
    }
    button.botao-verde p {
        color: white;
        font-size: 24px;
        font-weight: 800;
        text-transform: uppercase;
    }

    button.botao-gradiente {
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        background: linear-gradient(90deg, rgba(28, 93, 57, 1) 16%, rgba(0, 189, 255, 1) 71%, rgba(0, 120, 214, 1) 100%);
    }
    button.botao-gradiente p {
        color: white;
        font-size: 24px;
        font-weight: 800;
        text-transform: uppercase;
    }
    button.botao-gradiente.hvr-sweep-to-right:hover {
        transition: all .1s ease-in-out; 
        
    }
    button.botao-gradiente.hvr-sweep-to-right::before {
        background: var(--primaria-1);
        border-radius: 5px;
    }
    .botao-verde-claro p {
        font-size: 42px;
        color: var(--primaria-2);
        font-weight: 800;
    }
    .botao-verde-claro {
        border: 2px solid var(--primaria-2);
        background: none;
        border-radius: 5px;
        padding: 10px 15px;
    }
    /* Trim */
    article .hvr-trim {
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        position: relative;
    }
    article .hvr-trim:before {
        content: '';
        position: absolute;
        border: white solid 4px;
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        opacity: 0;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-property: opacity;
        transition-property: opacity;
    }
    article:hover .hvr-trim:before, article .hvr-trim:focus:before, article .hvr-trim:active:before {
        opacity: 1;
    }
    
/** FIM BOTÕES */

/** INÍCIO DO CONTAINER GRID */
    .container-grid {
        display: grid;
        /* margin: auto; */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-gap: 50px 50px ;
        padding: 30px 15px;
        justify-items: center;
    }
    .container-fluid {
        overflow: hidden;
    }
/** FIM DO CONTAINER GRID */

/*INICIO HEADER*/
    header .search-menu {
        padding: 7px 0;
    }
    header nav.container-fluid.navbar.navbar-expand-lg {
        justify-content: center;
        padding: unset;
    }
    .header-conteudo {
        display: flex;
        gap: 70px;
    }
    header li.current-menu-item a {
        font-weight: 800;
        color: var(--primaria-1);
        text-transform: uppercase;
    }
    header a {
        text-transform: uppercase;
        font-size: 14px;
    }
    header ul#menu-menu-principal {
        height: 100%;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
    }
    
    div#nav-desk li.current-menu-item:before {
        content: "";
        position: absolute;
        background-image: url(detalhe-svg.svg);
        width: 100%;
        height: 6px;
        bottom: -10px;
        transition: all .2s ease-in-out;
        background-repeat: no-repeat;
        background-position-x: center;
        border-radius: 5px;
    }
    div#nav-desk li.menu-item:hover:before {
        content: "";
        position: absolute;
        background-image: url(detalhe-svg.svg);
        width: 100%;
        height: 6px;
        bottom: -10px;
        transition: all .2s ease-in-out;
        background-repeat: no-repeat;
        background-position-x: center;
        border-radius: 5px;
    }
    header li.menu-item {
        position: relative;
    }
    header div#nav-desk {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }    
    
    header .d-none.d-lg-flex.header-content-desk {
        gap: 100px;
        width: 100%;
        justify-content: space-between;
    }
    
    header li.menu-item:hover a {
        font-weight: 800;
        color: var(--primaria-1);
    }
    .header-logo {
        padding: 20px 0;
    }
/*FIM HEADER*/

/* INICIO HOME */
    /** CARROSSEL **/
    .owl-theme .owl-dots .owl-dot {
        outline: none;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
        border-radius: 50px;
        border: 2px solid white;
        background: var(--primaria-2);
        box-shadow: 0px 3px 3px 0px rgb(151 151 151);
    }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: var(--primaria-3);
    }
    .owl-item .item img{
        height: auto;
    }
    #slider {
        position: relative;
    }
    #slider .owl-nav {
        margin-top: 0;
        position: absolute;
        width: 800px;
        left: calc( ( 100% - 800px) / 2);
        text-align: center;
        display: flex;
        justify-content: space-between;
        bottom: 0%;
        top: 90%;
    }
    #slider .owl-nav.disabled{
        opacity: 0;
        display: none;
    }
    #slider .owl-nav span {
        font-size: 70px;
    }
    #slider .owl-dots {
        position: absolute;
        z-index: 1;
        bottom: 20px;
        left: 0;
        right: 0;
    }
    #slider .owl-nav svg {
        width: 25px;
        height: auto;   
        fill: #fff;
    }
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        outline: none !important;
        background: none !important;
    }
    .owl-theme .owl-nav [class*=owl-]:hover {
        color: var(--primaria-3);
    }
    .owl-theme .owl-nav {
        margin-top: 0;
        position: absolute;
        left: calc( ( 73% - 1050px) / 2);
        text-align: center;
        display: flex;
        justify-content: space-between;
        top: 30%;
        width: 110%;
    }
    /*FIM CARROSSEL */
    
    .item-img-planos {
        text-align: center;
        padding-bottom: 15px;
    }
    .plano-de-governo {
        background: #F1F1F1;
        padding: 50px 20px;
    }
    
    .item-descricao-planos {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .resumo-post-planos {
        padding: 30px 15px 40px;
    }
    .descricao-plano {
        padding-bottom: 50px;
    }
    .descricao-plano p {
        font-size: 24px;
        padding-top: 15px;
    }
    .botao-plano {
        text-align: center;
    }
    .intro-juntos-home {
        padding: 220px 80px 220px 40px;
    }
    .descricao-juntos-home p {
        padding-bottom: 20px;
    }
    .titulo-juntos-home {
        text-align: center;
        padding-bottom: 20px;
    }
    .intro-juntos-home button.botao-verde {
        margin-top: 20px;
    }
    
    .coligacao {
        padding: 50px 20px 0;
       
    }
    .coligacao {
        position: relative;
        overflow: hidden;
    }
    .imagem-lidio {
        position: absolute;
        right: -70px;
        top: -5px;
    }
    .imagem-lidio img {
        max-height: 549px;
        width: auto;
    }
    .partidos h2 {
        padding-bottom: 15px;
        text-align: center;
        font-weight: bold;
        font-size: 24px;
    }
    .texto-lidio {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 60px;
        height: 376px;
    }
    .item-titulo-planos.text-center h3 {
        text-transform: uppercase;
        margin: unset;
    }
    .item-img-planos svg {
        max-height: 90px;
        width: auto;
        min-height: 90px;
    }
    
    .sobre-lidio {
        padding: 70px 20px;
        min-height: 810px;
    }
    .descricao-sobre-home h2 {
        color: white;
        font-size: 40px;
        text-transform: uppercase;
        padding-bottom: 30px;
    }
    .descricao-sobre-home {
        padding: 40px 0 30px;
    }
    .descricao-sobre-home p {
        color: white;
        padding-bottom: 30px;
    }
    .descricao-sobre-home.sobre-1 {
        padding-right: 18px;
    }
    .botao-sobre {
        text-align: center;
    }
    .sobre-dudu .descricao-sobre-home p {
        color: black;
    }
    .sobre-dudu .descricao-sobre-home h2 {
        color: var(--primaria-1);
    }
    .cta-whats {
        padding: 50px 20px;
        background: #f1f1f1;
    }
    .texto-cta-whats {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .videos-pilares {
        background: linear-gradient(0deg, rgba(255, 214, 0, 1) 0%, rgba(116, 183, 29, 1) 25%, rgba(28, 93, 57, 1) 48%, rgba(0, 189, 255, 1) 71%, rgba(0, 120, 214, 1) 100%);
        padding: 50px 20px;
    }
    .intro-videos * {
        color: white;
    }
    .intro-videos p {
        font-size: 24px;
        padding: 20px 0 30px;
    }
    .intro-videos h2 {
        padding: 15px 0;
        background: linear-gradient(90deg, rgba(255, 214, 0, 1) 0%, rgba(116, 183, 29, 1) 25%, rgba(28, 93, 57, 1) 48%, rgba(0, 189, 255, 1) 71%, rgba(0, 120, 214, 1) 100%);
        text-transform: uppercase;
        font-size: 42px;
        margin: 20px 0 10px;
    }
    .botoes button.botao-verde-claro {
        max-width: 310px;
    }
    .botoes .botao-verde-claro p {
        font-size: 24px;
        color: var(--primaria-2);
        font-weight: 800;
    }
    .botoes .col-lg-6 {
        text-align: center;
    }
    .botoes {
        background: #F7FFE8;
        padding: 60px 20px;
    }
    .videos-pilares .container-grid-item {
        max-width: 380px;
    }
    .item-descricao-pilares h3 {
        color: white;
        padding-top: 10px;
    }
    .video-escolhido {
        text-align: center;
    }
    .video-escolhido iframe {
        min-height: 716px;
        width: 100%;
        border: 5px solid white;
    }
    .svg-video {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .item-img-pilares {
        position: relative;
    }
    a.pilar-item:hover g {
        opacity: 1;
        transition: all .3s ease-in-out;
    }
    
/* Sweep To Right */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .hvr-sweep-to-right:before {
    border-radius: 5px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primaria-2);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-sweep-to-right:hover p, .hvr-sweep-to-right:hover svg path {
    color: white;
    fill: white;
    transition: all .3s ease-in-out;
  }
  .hvr-sweep-to-right:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  button.botao-verde.hvr-sweep-to-right::before {
    background: var(--primaria-1);
  }
  button.botao-verde.hvr-sweep-to-right:hover {
    border: 1px solid var(--primaria-1);
    transition: all .1s ease-in-out;
}
button.botao-verde-escuro:hover {
    border: 1px solid var(--primaria-2);
    transition: all .1s ease-in-out;
}
/* FIM HOME */

/* INICIO QUEM É O LIDIO */
    .tragetoria {
        background: #FFFBEC;
        padding: 50px 20px;
        position: relative;
    }
    
    .col-verde img {
        max-height: 272px;
        width: auto;
    }
    .col-verde {
        background: linear-gradient(269deg, rgba(255, 251, 236, 1) 0%, rgba(55, 171, 81, 0.4990371148459384) 100%);
        padding: 70px 60px;
        border-radius: 30px 0px 0px 30px;
        margin-left: 60px;
        margin-bottom: 30px;
        display: flex;
        gap: 20px;
    }
    .col-tragetoria {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    .col-amarela {
        background: linear-gradient(90deg, rgba(255, 251, 236, 1) 0%, rgb(255 215 51 / 50%) 100%);
        padding: 70px 60px;
        border-radius: 0px 30px 30px 0px;
        margin-right: 60px;
        text-align: end;
        margin-bottom: 30px;
    }
    .col-amarela img {
        max-height: 272px;
        width: auto;
    }
    .titulo-h1-tragetoria {
        padding-bottom: 50px;
    }
    
    .item_caminho img {
        height: 227px;
        width: auto;
    }
    .caminho .container-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        grid-gap: 30px 50px;
    }
    .item_caminho h3 {
        font-size: 32px;
        text-align: center;
        min-height: 76px;
    }
    .item_caminho p {
        text-align: initial;
        padding-top: 20px;
    }
    .item_caminho {
        text-align: initial;
    }
    .caminho .col-amarela {
        padding: 50px 60px;
        background: linear-gradient(90deg, rgba(255, 251, 236, 1) 0%, rgba(255, 215, 51, 1) 100%);
    }
    .text-center.titulo-caminho h2 {
        font-size: 42px;
        padding-bottom: 30px;
    }
    .logo-lidion img {
        height: auto;
        width: 230px;
    }
    .col-lg-4.info-imagem-2024 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    section.caminho {
        background: #FFFBEC;
        padding: 50px 20px;
    }
    .vinte-quatro {
        background: #FFFBEC;
        padding: 0px 20px 50px;
    }
/* FIM QUEM É O LIDIO */

/* CANDIDATOS */
    .candidatos .container-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        grid-gap: 35px 30px;
        row-gap: 35px;
        column-gap: 30px;
        padding: 30px 0px;
    }
    .introducao-candidatos {
        padding: 50px 20px;
    }
    .introducao-candidatos h1 {
        text-transform: uppercase;
        padding-bottom: 20px;
    }
    .introducao-candidatos p {
        font-size: 24px;
    }
    .titulo-candidatos p {
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        display: flex;
        align-items: end;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
    }
    .candidatos.psd {
        padding-bottom: 30px;
    }
/* FIM CANDIDATOS */

/* INICIO NOTICIAS */
    .noticias {
        padding: 50px 20px;
        background: #FFFBEC;
    }
    .titulo-noticias-principal H1 {
        text-transform: uppercase;
    }
    .descricao-noticias-principal p {
        font-size: 24px;
        padding: 20px 0 30px;
    }
    .noticias-titulo h2 {
        font-size: 21px;
        text-align: center;
        text-transform: uppercase;
        padding: 10px 0 15px;
        min-height: 75px;
    }
    .noticias-item {
        max-width: 390px;
    }
    .noticias-item button.botao-verde p {
        font-size: 21px;
        text-transform: none;
    }
    .noticias-item button.botao-verde {
        margin-top: 20px;
    }
    .noticias-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    aside.listagem-side-bar {
        background: linear-gradient(0deg, rgb(255 214 0 / 75%) 0%, rgb(116 183 29 / 75%) 25%, rgb(28 93 57 / 75%) 48%, rgb(0 189 255 / 75%) 71%, rgb(0 120 214 / 74%) 100%);
        padding: 50px 30px;
        /* height: 100%; */
    }
    .listagem-side-bar .redes-sociais {
        flex-direction: column;
    }
    .listagem-side-bar .redes-sociais svg path {
        fill: white;
    }
    .detalhe-sidebar {
        width: 100%;
        text-align: center;
        padding: 20px;
    }
    .detalhe-sidebar svg {
        width: 100%;
    }
    .intro-sidebar p {
        text-align: center;
        color: white;
        padding: 30px 0;
    }
    .sidebar-logo img {
        max-height: 93px;
        width: auto;
    }
    .intro-sidebar {
        text-align: center;
    }
    .titulo-sidebar h3 {
        color: white;
        text-align: center;
        padding-bottom: 20px;
    }
    .banner-imagem-single-blog IMG {
        max-width: 848px;
        height: auto;
        object-fit: cover;
    }
    .noticia-listagem-content {
        padding-right: 50px;
    }
    .listagem-side-bar .blog-imagem-post img {
        width: 140px;
        height: 98px;
        object-fit: cover;
    }
    .blog-sidebar a {
        display: flex;
        gap: 10px;
        align-items: center;
        padding-bottom: 25px;
    }
    .blog-sidebar .titulo-post p {
        color: white;
        text-transform: uppercase;
        font-weight: 800;
        line-height: 1.2;
    }
    .resumo-post p {
        color: white;
        line-height: 1.2;
        font-size: 14px;
    }
    button.botao-branco {
        background: none;
        border: none;
        padding: 0;
        margin-top: 3px;
    }
    button.botao-branco p {
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .noticias-post-titulo {
        padding: 30px 0 10px;
    }
    .blog-posts-content-descricao p {
        padding-top: 20px;
    }
    .noticia-listagem {
        background: #FFFBEC;
        padding: 50px 20px;
    }
/* FIM NOTICIAS */

/* INICIO FOOTER */
    footer {
        background: var(--primaria-1);
        padding: 50px 20px;
    }
    ul.redes-footer {
        list-style: none;
        display: flex;
        gap: 20px;
        padding: unset;
        margin: 0;
    }
    .redes-sociais {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo-footer {
        text-align: center;
    }
    .texto-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-footer h2 {
        color: white;
        text-align: center;
        padding-bottom: 10px;
    }
    .texto-footer h3 {
        font-weight: 400;
        color: white;
        font-size: 21px;
        text-align: center;
    }
    .copyright {
        background: #FAE592;
        padding: 10px 0;
    }
    .copyright p {
        color: var(--primaria-1);
        font-size: 14px;
        line-height: 149.4%;
    }
    .copyright a {
        color: var(--primaria-1);
        font-size: 14px;
        line-height: 149.4%;
    }
   
    /** BTN TOP **/
        .div-gotop {
            opacity: 0;
            display: block;
            position: fixed;
            right: 30px;
            bottom: 95px;
            z-index: 10;
        }
        .div-gotop button.gotop {
            background: white;
            outline: 0 !important;
            box-shadow: none;
            border: 1px solid;
            text-shadow: none;
            cursor: pointer;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }
        .div-gotop button.gotop img {
            width: 50px;
        }
        .div-gotop.active {
            opacity: 1;
        } 
        .gotop svg {
            fill: #2a2e30;
            width: 30px;
            height: 30px;
        }
        .div-gotop.active:hover {
            background: var(--primaria-5);
        }
        .div-gotop.active:hover svg {
            fill: #000000;
        }
        .div-gotop.active button.gotop {
            animation: 1.5s ease-out 0s 1 slideInFromTop;
        }
    /* FIM GOTOP */
    
/* FIM FOOTER */


/* INICIO PAGE SEARCH */
    #search .container-grid {
        grid-gap: 30px 30px;
    }
    img.attachment-.size-.wp-post-image {
        padding: 10px 20px;
        height: 220px;
    }
    .listaPost_content {
        gap: 12px;
        padding: 0px 25px 30px 20px;
        color: var(--text-color);
        font-size: 18px;
    }
    .breadcrumb-introducao ul {
        list-style: none;
    }
    
    .listaPost_content h2 {
        font-size: 24px;
        padding-bottom: 20px;
    }
    .botao-search {
        text-align: center;
        padding: 20px 0 0;
    }
    #search .container-grid {
        padding-bottom: 25px;
    }
    .mt-2.lerMais.button-1.button-sl-1 svg {
        width: 17%;
    }
    .breadcrumb-introducao span {
        color: var(--text-color);
    }
    .breadcrumb-introducao h2 {
        color: black;
        padding-bottom: 15px;
    }
    .breadcrumb-introducao {
        font-size: 18px;
        line-height: 24px;
        padding: 40px 0 40px 0;
    }
    .breadcrumb-introducao ul {
        display: flex;
        padding: 0px;
        margin: 0;
    }
    /* INICIO SEARCH */
        #button-header {
            background: none;
            border: none;
        }
        #input-header {
            border: none;
            border-bottom: 1px solid var(--text-color);
        }
        .search-menu * {
            transition: all .3s ease-in-out;
        }
        .search-home-bt {
            border: none;
            background: transparent;
            padding: 0 15px 0 0;
        }
        .search-menu input {
            border: none;
            border-bottom: 1px solid white;
            outline: none;
            background: transparent;
            width: 400px;
        }
        .search-menu #button-header {
            background: transparent;
        }
        .search-menu #button-header {
            background: transparent;
            padding: 0;
            border: none;
        }
        .search-menu form {
            display: flex;
            align-items: center;
            gap: 10px;  
            padding: 0px 40px 0 0;
            min-height: 94px;
            display: flex;
            justify-content: center;
        }
        .search-menu {
            position: relative;
            display: none;
            padding: 22px 0;
        }
        .search-menu .search-home-bt {
            position: absolute;
            top: 0;
            height: 100%;
            right: 5px;
            padding: 0;
        }
        .search-main-header {
            display: flex;
            align-items: center;
        }
        button.search-home-bt svg {
            height: 25px;
        }
        .titulo-page-search {
            padding-top: 50px;
        }
    /* FIM SEARCH */
/* FIM PAGE SEARCH */    


/** INICIO DO MEDIA */
    @media screen and (min-width: 2100px){
      
    }

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

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

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

    @media screen and (max-width: 1399px){
        /* HOME */
        .botoes .botao-verde-claro p {
            font-size: 22px;
            color: var(--primaria-2);
            font-weight: 800;
        }
        .intro-juntos-home {
            padding: 165px 80px 140px 15px;
        }
        .intro-videos p {
            font-size: 21px;
        }
        .descricao-plano p {
            font-size: 21px;
        }
        .titulo-sobre-home h2 {
            font-size: 32px;
        }
        .descricao-sobre-home {
            padding: 40px 0 0px;
        }
        .sobre-lidio {
            min-height: 700px;
        }
        .botao-verde-claro p {
            font-size: 32px;
        }
        header .d-none.d-lg-flex.header-content-desk {
            gap: 50px;
        }
        header ul#menu-menu-principal {
            gap: 30px;
        }

        .col-verde img {
            max-height: 230px;
        }
        .col-amarela img {
            max-height: 230px;
        }
        .col-tragetoria h2 {
            font-size: 28px;
        }
        .text-center.titulo-caminho h2 {
            font-size: 32px;
        }
        .item_caminho h3 {
            font-size: 28px;
            min-height: 66px;
        }
    }

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

    @media screen and (max-width: 1199px){
        button.botao-verde p {
            font-size: 21px;
        }
        h1, h2 {
            font-size: 28px;
        }
        button.botao-gradiente p {
            font-size: 21px;
        }
        .intro-juntos-home button.botao-verde {
            margin-top: unset;
        }
        .intro-juntos-home {
            padding: 148px 0px 130px 0px;
        }
        .partidos h2 {
            font-size: 21px;
        }
        .imagem-lidio {
            right: -35px;
            top: 2px;
        }
        .intro-videos h2 {
            font-size: 32px;
        }
        .video-escolhido iframe {
            min-height: 525px;
        }

        .col-verde {
            gap: 10px;
            flex-direction: column;
            align-items: baseline;
        }
        .col-lg-3.col-tragetoria {
            padding-bottom: 40px;
        }
    }

    @media screen and (max-width: 991px){
        button:focus:not(:focus-visible) {
            box-shadow: none;
        }
        button.navbar-toggler {
            border: none;
        }
        .header-content {
            padding: unset;
        }
        nav.navbar.navbar-expand-lg {
            padding: unset;
        }        
        div#navbarSupportedContent {
            background: #FFFBEC;
        }
        ul#menu-menu-principal-1 {
            padding: unset;
        }
        #menu-menu-principal-1 li {
            border-bottom: 1px dotted;
            padding: 30px 0;
            width: 100%;
            text-align: center;
        }
        #menu-menu-principal-1 li:last-child {
            border-bottom: unset;
        }
        #menu-menu-principal-1 {
            width: 100%;
        }
        div#navegacao {
            width: 100%;
        }
        .conteudo-header {
            display: flex;
            justify-content: space-between;
            width: 100%;
            padding: 0 15px;
        }
        .header-navbar {
            width: 100%;
        }
        .imagem-lidio {
            position: unset;
            text-align: center;
        }
        .texto-lidio {
            padding-top: 30px;
            height: 100%;
        }
        .sobre-lidio {
            min-height: unset;
            padding: 30px 20px 0;
        }
        .descricao-sobre-home {
            padding: unset;
            padding-right: unset;
        }
        .intro-juntos-home {
            position: relative;
        }
        .juntos-home {
            padding: 30px 20px;
            background: #FFFBEC;
        }
        .col-12.intro-juntos-home {
            padding: 30px 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 40px solid #e1fda3;
            border-radius: 120px;
        }
        .imagem-lidio img {
            max-height: unset;
            width: 100%;
        }
        .descricao-sobre-home h2 {
            font-size: 32px;
            padding-bottom: 20px;
        }
        .descricao-sobre-home p {
            padding-bottom: 20px;
        }
        .intro-videos h2 {
            font-size: 28px;
        }
        h3, h4 {
            font-size: 18px;
        }
        .botao-cta-whats {
            text-align: center;
            padding-bottom: 20px;
        }
        .cta-whats {
            padding: 30px 20px;
        }
        .videos-pilares {
            padding: 30px 20px;
        }
        .logo-footer img {
            max-height: 72px;
            width: auto;
        }
        .texto-footer {
            padding: 30px 0;
        }
        footer {
            padding: 30px 20px;
        }
        .video-escolhido iframe {
            min-height: 385px;
        }
        .tragetoria {
            padding: 30px 0;
            background: #fffbec !important;
        }
        .col-verde {
            margin: unset;
            border-radius: unset;
            flex-direction: row;
            justify-content: center;
            padding: 30px;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .col-tragetoria {
            padding: 30px 60px 30px;
        }
        .col-amarela {
            margin: unset;
            border-radius: unset;
            text-align: center;
            padding: 30px;
        }
        section.caminho {
            background: #FFFBEC;
            padding: 30px 0px 0;
        }
        .titulo-h1-tragetoria {
            padding-bottom: 20px;
        }
        .logo-lidion img {
            width: auto;
        }
        .vinte-quatro {
            padding: 0px;
        }
        .info-imagem-2024 {
            padding: 0px 60px 30px;
        }
        .titulo-footer h2 {
            font-size: 24px;
        }
        .texto-footer h3 {
            font-size: 18px;
        }
        .botao-verde-claro p {
            font-size: 24px;
        }
        button.botao-verde-claro svg {
            max-height: 55px;
            width: auto;
        }
        .caminho .col-amarela {
            padding: 30px 30px;
        }
        .resumo-post-planos {
            padding: 30px 15px 0;
        }
        .noticia-listagem-content {
            padding: 0 20px 30px;
        }
        
    }

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

    
        .item_caminho h3 {
            font-size: 24px;
            min-height: 58px;
        }
        .col-verde img {
            max-height: 170px;
        }
        .item_caminho {
            text-align: center;
        }
        .introducao-candidatos p {
            font-size: 21px;
        }
        .titulo-candidatos p {
            font-size: 21px;
        }
        
    }

    @media screen and (max-width: 576px){
        .video-escolhido iframe {
            min-height: unset;
        }
        .caminho .container-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        .item_caminho h3 {
            min-height: unset;
        }
        .col-amarela img {
            max-height: 180px;
        }
        .noticia-listagem {
            padding: 30px 0px 0;
        }
        .sidebar-logo img {
            max-height: 80px;
        }
    }

    @media screen and (max-width: 475px){
        .header-logo img {
            max-height: 45px;
            width: auto;
        }
        .info-imagem-2024 {
            padding: 0px 30px 30px;
        }
        .col-tragetoria {
            padding: 30px 30px 30px;
        }
        .col-verde img {
            max-height: 140px;
        }
        .col-tragetoria h2 {
            font-size: 24px;
        }
        .text-center.titulo-caminho h2 {
            font-size: 28px;
            padding-bottom: 15px;
        }
        .vinte-quatro .col-verde img {
            max-height: 190px;
        }
        .descricao-plano p {
            font-size: 18px;
        }
        button.botao-gradiente p {
            font-size: 18px;
        }
        button.botao-gradiente {
            margin-top: 30px;
        }
        .titulo-candidatos p {
            flex-direction: column;
            align-items: center;
            padding: 10px 0;
        }
    }


    @media screen and (max-width: 420px){
        .col-verde img {
            max-height: 148px;            
        }
        .col-verde {
            gap: 10px;
        }
        .col-amarela img {
            max-height: 148px;
        }
    }


    @media screen and (max-width: 400px){  
        .header-logo img {
            max-height: 45px;
        }
    }

    @media screen and (max-width: 380px){
        
        .vinte-quatro .col-verde img {
            max-height: 165px;
        }
    }

    @media screen and (max-width: 350px){
        h1, h2 {
            font-size: 24px;
        }
    }

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

    }
