@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    list-style: none;
}

/* Loader style */

.loader-container {
    width: 100vw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#loader-1:before,
#loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 10px solid transparent;
    border-top-color: #073865;
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite;
}

#loader-1:after {
    border: 10px solid #ccc;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.body.active {
    overflow: hidden;
}

.body {
    overflow-x: hidden;
}

/* Estilo menu estados */

#menu-estados {
    position: relative;
}

#menu-estados ul {
    opacity: 0;
    /* Inicialmente invisível */
    max-height: 0;
    /* Altura zero quando oculto */
    overflow-y: auto;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    /* Transição suave */
}

#menu-estados ul::-webkit-scrollbar {
    width: 10px;
    /* width of the entire scrollbar */
}

#menu-estados ul::-webkit-scrollbar-track {
    background: #062D51;
    /* color of the tracking area */
}

#menu-estados ul::-webkit-scrollbar-thumb {
    background-color: #fff;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid #024786;
    /* creates padding around scroll thumb */
}

#menu-estados li:hover>ul {
    opacity: 1;
    /* Visível ao passar o mouse */
    max-height: 500px;
    /* Ajuste a altura máxima conforme necessário */
}

.has-sub .dropdown-item {
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #062D51;
}

#menu-estados ul ul {
    background-color: #024786;
    min-width: 200px;
}

#menu-estados ul ul a {
    color: #fff;
}

#menu-estados ul ul a:hover {
    background-color: #062D51;
}

/* desktop dropdown style */

.list-scroll {
    max-height: 50dvh;
    overflow-y: auto;
}

.list-scroll::-webkit-scrollbar {
    width: 10px;
    /* width of the entire scrollbar */
}

.list-scroll::-webkit-scrollbar-track {
    background: #062D51;
    /* color of the tracking area */
}

.list-scroll::-webkit-scrollbar-thumb {
    background-color: #fff;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid #024786;
    /* creates padding around scroll thumb */
}

#dropdown-menu,
#dropdown-menu ul,
#dropdown-menu ul li,
#dropdown-menu ul li a,
#dropdown-menu #head-mobile {
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
}


#dropdown-menu ul ul {
    position: absolute;
    left: -9999px;
    height: auto;
}

#dropdown-menu ul ul li {
    height: auto;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #024786;
    transition: all .25s ease
}

#dropdown-menu li:hover>ul {
    left: -22px;
}

#dropdown-menu li:hover>.submenu-cidades {
    left: -10px;
}

#dropdown-menu li:hover>ul>li {
    height: 35px;
    height: auto;
}

#dropdown-menu ul ul ul {
    margin-left: 112%;
    top: 0px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 11px 15px;
    width: auto;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s ease-in;
    font-family: 'saira', sans-serif;
}

.dropdown-item-state {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 11px 0px;
    width: 70px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s ease-in;
    font-family: 'saira', sans-serif;
}

.dropdown-item:hover {
    background-color: #062D51;
}

#dropdown-menu ul ul li:hover>p,
#dropdown-menu ul ul li p:hover {
    color: #fff
}

#dropdown-menu ul ul li.has-sub>p {
    cursor: pointer;
}

#dropdown-menu ul ul li.has-sub>p:after {
    position: absolute;
    top: 16px;
    right: 4px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: ''
}

#dropdown-menu ul ul li.has-sub>p:before {
    position: absolute;
    top: 13px;
    right: 7px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: '';
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease
}

/* Mobile dropdown style */
.dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: none;
    border: none;
}

.dropdown-item-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 11px 15px;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s ease-in;
    font-family: 'saira', sans-serif;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-item-mobile-button {
    width: 100%;
    padding: 5px 8px;
    background-color: #073865;
    border: 1px solid #062D51;
    font-size: 18px;
    color: #fff;
    font-family: 'saira', sans-serif;
    font-weight: bold;
    outline: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    max-height: 300px;
    overflow-y: auto;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    font-family: 'saira', sans-serif;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown-content.active {
    display: block;
}

/* fixed-whastapp-button */
.fixed-whatsapp-button {
    cursor: pointer;
    color: #fff;
    border: solid #fff 2px;
    outline: none;
    background-color: #00d34d;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease-in-out;
}

.fixed-whatsapp-button:hover {
    transform: scale(1.2);
    background-color: #fff;
    border-color: #00d34d;
    color: #000;
}

.fixed-whatsapp-button.active {
    opacity: 0;
}

.fixed-whatsapp-button.hide {
    opacity: 0;
}

/* nav-bar style */

.nav-bar {
    z-index: 1000;
    height: 117px;
    display: flex;
    position: fixed;
    width: 100%;
    background-image: linear-gradient(to right, #073865 0%, #024786 57%, #06345E 100%);
    justify-content: space-between;
    align-items: center;
    padding: 40px 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-list {
    display: flex;
    gap: 48px;
    list-style: none;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
    flex-wrap: wrap;
}

.list-item {
    color: #fff;
    font-size: 18px;
    font-family: 'saira', sans-serif;
    cursor: pointer;
    font-weight: 500;
}

.of-item {
    display: none;
}

/* dropdown style  */

.item-investigation {
    text-decoration: underline #fff;
}

.list-hover {
    transition: 0.2s;
    font-size: 20px
}

.list-hover:hover {
    font-weight: bold;
}

.item-home {
    font-weight: bold;
    font-size: 22px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 5.4px;
    align-items: flex-end;
    cursor: pointer;
    z-index: 2;
}

.nav-list-active {
    align-items: center;
    justify-content: center;
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 30px;
}

.nav-menu>div {
    background-color: #fff;
}

.nav-menu>.line1 {
    width: 35px;
    height: 3px;
    border-radius: 10px;
}

.nav-menu>.line2 {
    width: 18px;
    height: 3px;
    border-radius: 10px;
}

.nav-menu>.line3 {
    width: 35px;
    height: 3px;
    border-radius: 10px;
}

/* First Section style */

.first-section {
    width: 100%;
    background-image: linear-gradient(to right, #073865 0%, #024786 57%, #06345E 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    padding: 100px 20px;
}

.first-section-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: "sora", sans-serif;
    color: #fff;
    gap: 20px;
}

.first-section-content>h1 {
    margin-top: 117px;
    font-size: 46px;
    font-weight: bold;
    text-transform: uppercase;
}

.first-section>img {
    margin-top: 117px;
}

.first-section-content>p {
    font-family: 'sora', sans-serif;
    font-weight: 0;
    font-size: 18px;
    line-height: 30px;
}

.first-section-content>a>button {
    background-color: #fff;
    border: none;
    outline: none;
    padding: 15px 40px;
    color: #073865;
    font-weight: bold;
    font-size: 16px;
    font-family: 'sora', sans-serif;
    border-radius: 10px;
    cursor: pointer;
}

.first-section-content>button>a {
    text-decoration: none;
    color: #073865;
}

/* Second section style */

.second-section {
    width: 100%;
    padding: 50px 60px;
}

.second-section-cotent {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.second-section-cotent>h1 {
    font-family: 'sora', sans-serif;
    font-weight: bold;
    font-size: 48px;
}

.second-section-cotent>p {
    font-family: 'saira', sans-serif;
    font-size: 22px;
    color: #1A202C;
}

.second-section-cards-container {
    display: flex;
    padding: 120px 0px;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.second-section-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 320px;
    transition: 0.5s ease-in;
}

.second-section-cards:hover {
    transform: scale(1.1);
}

.second-section-cards>img {
    width: 95px;
}

.second-section-cards>h2 {
    font-size: 24px;
    font-weight: bolder;
    font-family: 'sora', sans-serif;
    color: #1A202C;
}

.second-section-cards>p {
    font-size: 16px;
    font-family: 'saira', sans-serif;
    color: #1A202C;
    font-weight: 300;
}

/* nossa metodologia style */

.our-methodologya {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
}

.our-methodology-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.our-methodology-content>h1 {
    font-size: 48px;
    font-family: 'sora', sans-serif;
    text-align: center;
}

.our-methodology-content>p {
    font-family: 'saira', sans-serif;
    font-size: 22px;
    color: #1A202C;
}

/* steps style */
.steps {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps>img {
    max-width: 100%;
}

/* third-section style */

.third-section {
    background-color: #073865;
    padding: 100px 20px;
}

.third-section-tittle {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.third-section-tittle>h1 {
    font-size: 48px;
    font-family: 'sora', sans-serif;
    font-weight: bold;
    color: #fff;
}

.third-section-tittle>p {
    font-size: 22px;
    font-family: 'saira', sans-serif;
    color: #fff;
}

.third-section-content {
    margin-top: 60px;
    gap: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.third-section-steps {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.third-section-steps-texts {
    display: flex;
    flex-direction: column;
    width: 430px;
    gap: 60px;
}

.third-section-steps-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.third-section-steps-text>h2 {
    font-size: 22px;
    font-family: 'sora', sans-serif;
    color: #fff;
}

.third-section-steps-text>p {
    font-size: 16px;
    font-family: 'sora', sans-serif;
    color: #fff;
    line-height: 32px;
}

/* electoral-scenario style*/

.electoral-scenario {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 20px;
    gap: 80px;
}

.electoral-scenario-tittle {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.electoral-scenario-tittle>h1 {
    font-size: 48px;
    font-weight: bold;
    font-family: 'sora', sans-serif;
    color: #1A202C;
}

.electoral-scenario-tittle>p {
    font-size: 22px;
    font-weight: 500;
    font-family: 'saira', sans-serif;
    color: #1A202C;
}

.electoral-scenario-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.electorial-scenario-content-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.electoral-scenario-content-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 319px;
}

.electoral-scenario-content-card>img {
    width: 82px;
}

.electoral-scenario-content-card>h2 {
    font-size: 24px;
    font-family: 700;
    font-family: 'sora', sans-serif;
    color: #0B132A;
}

.electoral-scenario-content-card>p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'saira', sans-serif;
    color: #0B132A;
}

.electoral-scenario-content-cards-flex {
    display: none;
}

/* carrousel style */
.carousel {
    display: none;
    width: 100%;
    height: 400px;
    position: relative;
    padding: 0px 20px;
}

.carousel>ul {
    padding: 0;
    list-style: none;
    display: flex;
}

.slide {
    position: absolute;
    display: flex;
    opacity: 0;
    transition: 0s opacity ease-in;
    transition-delay: 0s;
}

.slide[data-active] {
    opacity: 1;
    z-index: 1;
    transition-delay: 0ms;
}

.electoral-scenario-cards-carrousel-buttons {
    top: 70%;
    position: absolute;
    display: flex;
    gap: 20px;
}

.carousel-button {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #073865;
    cursor: pointer;
    border-radius: .25rem;
    padding: 0 .5rem;
    font-size: 27px;
    background: none;
    outline: none;
    border: 1px solid #073865;
    border-radius: 17px;
}


/* Depoiments style */

.depoiments {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 100px 20px;
    width: 100%;
    background-image: linear-gradient(to right, #073865 0%, #024786 57%, #06345E 100%);
}

.depoiments-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.depoiments-content>h1 {
    font-size: 48px;
    font-weight: bold;
    font-family: 'sora', sans-serif;
    color: #fff;
    text-align: center;
}

.depoiments-content>p {
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-family: 'saira', sans-serif;
}

.depoiments-cards-container {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    gap: 40px;
}

.depoiment-card {
    z-index: 100;
    border-radius: 10px;
    padding: 20px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 390px;
    gap: 30px;
    background-color: #062D51;
}

.depoiment-card-cotent {
    display: flex;
    justify-content: space-between;
}

.depoiment-card-name {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
}

.depoiment-card-avaliation {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
}

.depoiment-card-text>p {
    color: #fff;
    font-size: 16px;
    font-family: 'saira', sans-serif;
}

/* swiper style */
.swiper {
    height: 280px;
}

.swiper-pagination-bullet {
    font-size: 20px;
    padding: 6px;
    box-sizing: border-box;
}

/* footer style */

footer {
    border-top: 1px solid #fff;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    background-image: linear-gradient(to right, #073865 0%, #024786 57%, #06345E 100%);
}

footer>h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-family: 'saira', sans-serif;
}

.footer-image {
    position: absolute;
    left: 0;
    z-index: 0;
}

.footer-cotent {
    z-index: 1;
    padding: 30px 0px;
    display: flex;
    width: 838px;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #ffffff80;
}

.footer-content-texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    width: 319px;
    font-size: 16px;
    font-family: 'sora', sans-serif;
    line-height: 22px;
    font-weight: 600;
}

.footer-content-texts>img {
    width: 250px;
}

.footer-content-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-content-contacts>h2 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'sora', sans-serif;
    text-align: center;
    color: #fff;
}

.footer-content-contacts-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content-contacts-button {
    width: 250px;
    height: 47px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content-contacts-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'sora', sans-serif;
}

.whatsapp-button {
    border: none;
    outline: none;
}

.whatsapp-button {
    color: #000;
}

.instagram-button {
    background: none;
    border: 1px solid #fff;
}

.instagram-button {
    color: #fff;
}

.footer-content-contacts-button>i {
    font-size: 23px;
}

@media(max-width: 1225px) {
    /* First Section style */

    .first-section-content {
        width: 500px;
    }
}

@media(max-width: 1200px) {
    /* electoral-scenario style */

    .electoral-scenario-content>img {
        width: 400px;
    }
}

@media(max-width: 1130px) {

    /* Nav-bar animation */

    .nav-bar {
        justify-content: space-between;
        padding: 40px 20px;
    }


    .nav-list-active {
        display: flex;
    }

    .nav-list {
        position: fixed;
        width: 100%;
        height: 100dvh;
        flex-direction: column;
        top: -100vh;
        left: 0;
        background-color: #fff;
        z-index: 1000;
        gap: 30px;
        transition: ease-in-out 0.5s;
    }

    .nav-list.active {
        top: 0;
    }

    .list-item {
        color: #073865;
        font-weight: bold;
        font-size: 28px;
    }

    .item-investigation {
        text-decoration: underline #073865;
    }

    .dropdown-item-container {
        display: none;
    }

    .nav-menu {
        display: flex;
        z-index: 1000;
    }

    .nav-menu>div {
        transition: ease-in-out 0.4s;
    }

    .nav-menu.active div:nth-child(2) {
        background-color: #073865;
        opacity: 0;
    }

    .nav-menu.active div:nth-child(1) {
        background-color: #073865;
        transform: translateY(8px) rotate(45deg);
    }

    .nav-menu.active div:nth-child(3) {
        background-color: #073865;
        transform: translateY(-8px) rotate(-45deg);
    }

    /* third-section style */

    .third-section-content>img {
        width: min(400px, 100%);
        height: auto;
    }

    /* electoral scenario style */

    .electoral-scenario-content {
        flex-direction: column;
        gap: 120px;
    }

    .electorial-scenario-content-cards {
        display: none;
    }

    .electoral-scenario-content-cards-flex {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    /* footer style */

    footer.active>img {
        display: none;
    }
}

@media(max-width: 985px) {
    .first-section-content {
        width: 100%;
    }

    .first-section-content>h1 {
        font-size: 36px;
    }

    .first-section-content>p {
        font-size: 14px;
    }

    .plan-section {
        padding: 100px 20px;
    }

    .plan-section>h2 {
        text-align: center;
        font-size: 36px;
    }

    .first-section {
        padding: 20px;
        flex-direction: column-reverse;
    }

    .first-section>img {
        margin-top: 0;
        width: min(319px, 100%);
        height: auto;
    }

    /* Second section style */

    .second-section-cards-container {
        flex-wrap: wrap;
    }

    .second-section-cotent>h1 {
        font-size: 28px;
    }

    .second-section-cotent {
        font-size: 14px;
    }

    /* our metodology style */

    .our-methodology-content>h1 {
        font-size: 28px;

    }

    .our-methodology-content>p {
        font-size: 14px;
    }

    /* third-section style */

    .third-section-content {
        flex-direction: column-reverse;
    }

    /* depoiments style */

    .depoiments-content>h1 {
        font-size: 28px;
    }

    .depoiments-content>p {
        font-size: 14px;
    }

    /* electoral scenario */
    .electoral-scenario-tittle>h1 {
        font-size: 24px;
    }

    .electoral-scenario-tittle>p {
        font-size: 14px;
    }
}

@media(max-width: 853px) {

    /* footer style */
    .footer-cotent {
        justify-content: space-around;
    }
}

@media(max-width: 840px) {

    /* footer style */
    footer {
        padding: 10px 20px;
    }

    footer>h3 {
        text-align: center;
        font-size: 10px;
    }

    .footer-cotent {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-content-contacts>h2 {
        text-align: left;
    }
}

@media(max-width: 710px) {
    .electoral-scenario-content-cards-flex {
        display: none;
    }

    .carousel {
        display: block;
    }
}

@media(max-width: 650px) {
    /* third-section style */

    .third-section-steps {
        flex-direction: column;
        width: 100%;
    }

    .third-section-steps-text>h2 {
        font-size: 18px;
    }

    .third-section-steps-text>p {
        font-size: 12px;
        line-height: 15px;
    }

    .third-section-content>img {
        width: min(310px, 100%);
        height: auto;
    }

    .third-section-steps-texts {
        width: 100%;
        max-width: 100%;
    }
}

@media(max-width: 560px) {
    .depoiments {
        padding: 100px 0px;
    }

    .depoiment-card {
        width: 100%;
    }

    /* elctoral-scenario style */

    .electoral-scenario-content>img {
        width: 100%;
    }

    .electoral-scenario-content-card {
        width: min(319px, 100%);
    }

    .footer-content-contacts-button {
        width: min(250px, 100%);
    }

    .footer-content-texts {
        width: 100%;
    }

    .footer-content-texts>img {
        width: min(250px, 100%);
    }

    .first-section>img {
        width: min(319px, 100%);
        height: auto;
    }

    .plan-section>h2 {
        font-size: 28px;
        padding: 0 16px;
    }

    .card {
        width: min(300px, calc(100vw - 64px));
    }
}

@media(max-width: 370px) {
    .footer-image {
        width: min(300px, 100%);
        max-width: 100%;
    }

    .footer-content-texts>p {
        width: 100%;
    }

    .electoral-scenario-content-card {
        width: min(230px, 100%);
    }

    .list-item {
        color: #073865;
        font-weight: bold;
        font-size: 24px;
    }
}

/* Estilo Planos */

.plan-section {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    padding: 100px 0px;
    background-color: #062D51;
}

.plan-section>h2 {
    font-weight: 400;
    font-size: 48px;
    color: #4A94F4;
}

.planoCarrousel-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.planoCarrousel {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transition: all 0.3s ease-in-out;
}

.planoCarrousel::-webkit-scrollbar {
    display: none;
}

.card {
    padding: 0px 0px 26px 0px;
    background-color: #00245D;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.card-header {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    position: relative;
}

.card-header h2 {
    font-size: 24px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00245daf;
    z-index: 0;
}

.card .badge {
    display: inline-block;
    background-color: #D2FB2CA8;
    color: #063C6E;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.75);
}

.price {
    font-size: 36px;
    color: #18E070;
    margin: 15px 0;
    font-weight: 700;
    font-family: 'saira', sans-serif;
}

.card p {
    font-size: 14px;
    text-align: justify;
    margin: 15px 20px;
    line-height: 1.5;
    font-family: 'sora', sans-serif;
}

.card .btn {
    width: 90%;
    background-color: #4A94F4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
}

.card .btn:hover {
    background-color: #3178C6;
}

/* Botões de navegação */
.planoCarrousel-nav {
    z-index: 50;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.planoCarrousel-nav.left {
    left: 0;
}

.planoCarrousel-nav.right {
    right: 0;
}

.planoCarrousel-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Para telas grandes */
@media (min-width: 768px) {
    .planoCarrousel {
        justify-content: flex-start;
    }
}

/* pop-up style */

.popup-container {
    display: none;
    /* Escondido por padrão */
    position: fixed;
    z-index: 1000;
    /* Para estar acima de todos os outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Fundo semi-transparente */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    align-items: center;
}

.close-btn {
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    font-weight: bold;
    z-index: 100;
    color: #fff;
    background-color: #00245D;
}


body.popup-active {
    overflow: hidden;
    /* Previne o scroll quando o pop-up está ativo */
}
.teste-planoCarrousel-container {
    display: flex;
    flex-direction: column; /* Alinha verticalmente */
    align-items: flex-start; /* Alinha à esquerda */
    width: 100%; /* Ajuste a largura do carrossel */
    overflow: hidden; /* Oculta o excesso */
    position: relative;
}

.teste-planoCarrousel {
    display: flex;
    transition: transform 0.3s ease; /* Animação para a transição */
}

.teste-card {
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    min-height: auto;
    background-image: linear-gradient(to right, #073865, #024786, #06345E);
    color: #fff;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-right: 20px; /* Espaço entre os cartões */
    flex-shrink: 0; /* Impede que o cartão encolha */
}
.teste-card-white {
    background-image: none;
    background-color: #fafafa;
    color: #000;
}

.teste-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.teste-price {
    font-weight: bold;
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'sora', sans-serif;
}

.teste-price sup {
    font-size: 0.7em;
    vertical-align: super;
}

.teste-price span {
    background-color: #FF2F2F;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    padding: 4px;
    border-radius: 2px;
}

.teste-price-white {
    color: #000;
}

.teste-full-price {
    font-family: 'sora', sans-serif;
    font-size: 18px;
    text-decoration: line-through;
    color: #c2c2c2;
}

.teste-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin-top: 20px;
    flex-grow: 1;
}

.teste-card ul p {
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'sora', sans-serif;
    text-transform: uppercase;
}

.teste-card ul li {
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'saira', sans-serif;
}

.teste-card ul li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.teste-card button {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.teste-card a button{
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}
.teste-card button:hover {
    background-color: #0056b3;
}

.teste-badge {
    background-color: #fff;
    color: #0f4471;
    padding: 10px 10px;
    border-radius: 50px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

.teste-badge img {
    width: 30px;
    height: 30px;
}

.teste-content {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.teste-planoCarrousel-nav {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #007bff;
    margin: 0 5px; /* Espaçamento entre os botões */
}

.teste-nav-container {
    display: flex; /* Alinha horizontalmente */
    justify-content: flex-start; /* Alinha à esquerda */
    margin-top: 10px; /* Espaço acima das setas */
    width: 100%; /* Para ocupar a largura total */
    position: fixed;
    bottom: 10px;
}


/* Estilização do botão da seta de navegação */
.teste-nav-container button {
    width: 40px; /* Largura do botão */
    height: 40px; /* Altura do botão */
    border-radius: 50%; /* Torna o botão redondo */
    display: flex; /* Centraliza o conteúdo */
    align-items: center; /* Alinha verticalmente */
    justify-content: center; /* Alinha horizontalmente */
    border: 2px solid #073865; /* Borda para a seta esquerda */
    cursor: pointer; /* Cursor de ponteiro ao passar o mouse */
}

.teste-nav-container button:first-child {
    background-color: #fff; /* Fundo branco para a seta da esquerda */
    color: #062D51;
}

.teste-nav-container button:last-child {
    background-color: #073865; /* Fundo azul escuro para a seta da direita */
    color: #fff;
    border: none; /* Remove a borda da seta da direita */
}

/* Estilização do texto das setas */
.teste-nav-container button:hover {
    opacity: 0.8; /* Efeito de hover */
}
