/* HERO */

:root {
    --app-height: 100%;
}


body {
    background-color: black;
}


.hero {
    width: 100vw;
    height: 100vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}


.dropdown-menu {
    display: none;
}
/* LOGO HERO */

.imagem-hero {
    position: absolute;
    top: 45%;
    left: 5%;
    z-index: 99;
    width: 30%;
}

.imagem-hero img { 
    width: 100%;
    height: auto;
    user-select: none;
}

/* ÁREA DIREITA */

.hero-right {
    position: absolute;
    top: 0;
    left: 40%; 

    width: 60%;
    height: 100%;

    overflow: hidden;
    
}
/* PAINÉIS */

.panel {
    position: absolute;
    top: 12%;
    height: 88%;

    border-radius: 50px;

    overflow: hidden;

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: start;
    align-items: flex-end;
    padding: 25px;

    font-family: 'Michroma', sans-serif;
    font-size: 18px;
    color: white;

    clip-path: polygon(
        15% 0,
        100% 0,
        85% 100%,
        0 100%
    );

    transform: translateX(200%);
    transition: transform 0.3s ease, filter 1s ease;

    filter: grayscale(100%);
}


.panel-destaque {
    transform: scale(1.05) !important;
    filter: grayscale(0%) brightness(1) !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}
/* IMAGENS */


.fortaleza {
    background-image: url('../Imagens/CE-fortaleza-limpo.png');
    width: 70%;
    left: 0%;
    z-index: 1;
}

.balneario {
    background-image: url('../Imagens/BC-Banner-limpo.png');
    width: 70%;
    left: 40%;
    z-index: 4;
}

.goiania {
    background-image: url('../Imagens/Go-Banner-limpo.png');
    width: 60%;
    left: 70%;
    z-index: 3;
}



.encerrado:hover {
    transform: translateX(0) scale(1.0) !important;
    filter: brightness(1.0) !important;
    filter: grayscale(100%) !important;
}

.encerrado:hover span {
    transform: scale(1) !important;
}



/* ANIMAÇÃO DE ENTRADA */

.panel.active {
    transform: translateX(0);
}

/* HOVER */

.panel:hover {
    transform: translateX(0) scale(1.03);
    filter: brightness(1.1);
    filter: grayscale(0%);
}


.panel.highlight {
    transform: translateX(0) scale(1.05);
    filter: grayscale(0%) brightness(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* TEXTO */

.panel span {

    margin-left: 3rem;

    

    font-weight: 900;
    font-size: clamp(0.5rem, 2.5vw, 2.9rem);
    font-family: 'Poppins', sans-serif;
    user-select: none;
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.85);

    transition: all 0.3s ease;
}

.panel:hover span{
    transform: scale(1.03);
}

.section2 {
    min-height: 900px;
    margin-bottom: 120px;
    width: 100vw; 
    display: flex;
    justify-content: center;
    overflow: hidden;
}



.section2-container {
    width: 90%;
    display: flex;
}



.section2-left {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide {
    position: absolute;

    width: 100%;
    height: 80%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 0.8s ease;

    border-radius: 20px;
}


.slide.active {
    opacity: 1;
}


.section2-right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}



.texto-introdução {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.texto-introdução img{
    width: 50%;
    margin-bottom: 10px;
    
    user-select: none;
}

.texto-introdução p{
    font-size: 50px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 20px;
}   


.grade-introdução {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 80%;
    height: 100%;
    gap: 10px;
    border-radius: 10px;
}

.item-grade {
    height: 90%;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 0 10px;
}

.desc {
    transition: opacity 0.3s ease;
    font-weight: 700;
    font-size: 120%;
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    bottom: 10%;
    line-height: 1.2;
    font-family: 'Stack Sans Headline', sans-serif;

        background: rgba(245, 245, 245, 0.79);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 15px;
}


.item-grade:hover {
    transform: scale(1.04);
}

.item-grade p {
    padding-top: 10px;
    font-size: 5vh;
    font-weight: 900;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
    position: absolute;
    bottom: 60%;
}

.item-grade:hover p {
    transform: translateY(-20%);
}

.item-grade img {
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 10%;
    width: 40%;
    height: auto;
    
    user-select: none;
}

.item-grade:hover img {
    opacity: 0;
    
    user-select: none;
}

.item-grade .desc {
    opacity: 0;
}

.item-grade:hover .desc {
    opacity: 1;
}











.section3 {
    position: relative;
    width: 100vw;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info  {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.info-title {
    padding-top: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.info-title h2 {
    font-size: 50px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 20px;
}

.info-title p {
    font-size: 40px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 20px;
}


.info-title img{
    width: 50%;
    margin-bottom: 30%;
    user-select: none;
}

.info-card * {
    position: relative;
    z-index: 2;
}

.info-card {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

    width: 90%;
    height: 100%;
    border-radius: 20px;
    padding: 5%;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.info-card:hover .info-card-img2{
    opacity: 1;
}

.info-card:hover .info-card-img1{
    opacity: 0;
}


.info-card.active {
    opacity: 1;
    pointer-events: auto;
}

.info-card img{
    position:absolute;
}

.info-card-img1 {
    width: 45%;
    user-select: none;
    opacity: 1;
    left: 28%;
    top: 13.5%;
    transition: opacity 0.5s ease;
}

.info-card-img2 {
    width: 60%;
    user-select: none;
    opacity: 0;
    left: 20.9%;
    top: 7.1%;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.info-card-img2:hover {
    transform:scale(1.05)
}


.info-ce::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../Imagens/CE-fortaleza-limpo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    filter: grayscale(100%) brightness(0.8) blur(2px);
    z-index: 1;
}

.info-ce:hover::before{
    filter: grayscale(0%) brightness(0.8) blur(2px);
}



.info-go::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../Imagens/Go-Banner-limpo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    filter: grayscale(100%) brightness(0.8) blur(2px);
    z-index: 1;
}

.info-go:hover::before{
    filter: grayscale(0%) brightness(0.8) blur(2px);
}


.info-sc::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../Imagens/BC-Banner-limpo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    filter: grayscale(100%) brightness(0.8) blur(2px);
    z-index: 1;
}

.info-sc:hover::before{
    filter: grayscale(0%) brightness(0.8) blur(2px);
}


.info-text {
    position: absolute;
    height: fit-content;
    bottom: 7%;
    width: 80%;
    background: rgba(83, 83, 83, 0.301);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 10px 0;
    transition: transform 0.2s ease;
}

.info-card:hover .info-text{
    transform: scale(1.02);
}

.info-text p{
    font-size: clamp(0.7rem, 3.5vh, 4rem);
    font-weight: 700;
    color: white;
    text-align: center;
}

.info-text h2 {
    color: white;
    font-size: clamp(1rem, 10vh, 5rem);
    text-align: center;
    margin: 10px 0;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
}   






.section3:has(.ce:hover) .info-ce{
    opacity: 1;
}

.section3:has(.go:hover) .info-go{
    opacity: 1;
}

.section3:has(.sc:hover) .info-sc{
    opacity: 1;
}


.mapa {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mapa-wrapper {
    position: relative;
    aspect-ratio: 771 / 752;
    width: 100vw;
}

.mapa-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    user-select: none;
}




.ponto {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.ponto:hover {
    transform: scale(1.5) translate(-50%, -50%);
}


.go  {
    top: 56%;
    left: 64%;
    background-color: #349470;
    box-shadow: 0px 0px 15px 10px #25684fbc;
}



.ce {
    top: 26%;
    left: 89%;
    background-color: #ff7112;
    box-shadow: 0px 0px 15px 10px #e06310b2;
}


.sc {
    top: 82%;
    left: 62%;
    background-color: #30d3f8;
    box-shadow: 0px 0px 15px 10px #2fc9ec;
}

.a-card {
    width: 100%;
    height: 100%;
    z-index: 99;
}

@keyframes rainbow {
    0% {
        background: red;
        box-shadow: 0 0 20px red;
    }
    7% {
        background: orange;
        box-shadow: 0 0 20px orange;
    }
    21% {
        background: yellow;
        box-shadow: 0 0 20px yellow;
    }
    36% {
        background: lime;
        box-shadow: 0 0 20px lime;
    }
    50% {
        background: cyan;
        box-shadow: 0 0 20px cyan;
    }
    65% {
        background: blue;
        box-shadow: 0 0 20px blue;
    }
    79% {
        background: violet;
        box-shadow: 0 0 20px violet;
    }
    100% {
        background: red;
        box-shadow: 0 0 20px red;
    }
}

.section4{
    width: 100vw;
    min-height: 400px;
    margin-top: 200px;
    margin-bottom: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section4-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4vh;
}

.section4-title img{
    width: 20%;
}

.section4 h2{
    color: white;
    font-size: 300%;
    margin-bottom: 2vh;
    margin-right: 30px;
}

.numeros-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
    width: 80%;

    border-radius: 20px;
    background-color: rgba(209, 209, 209, 0.226);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 20px 40px;
}

.numero {
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    

}

.counter::before {
    content: "+";
}

.numero h3{
    font-size: 230%;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;
}

.numero p {
    font-size: 120%;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;
}





.section5 {

    min-height: 1000px;
    width: 100vw;

    margin-bottom: 20vh;

    padding: 2%;

    flex-direction: column;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.section5-text {
    width: 80%;
}

.section5 h3 {
    color: white;
    font-size: clamp(2rem, 5vw, 5rem);
    margin-bottom: 5vh;
}


.section5 p{

    background-color: rgba(73, 73, 73, 0.589);
    
    padding: 2rem;

    border-radius: 20px;

    font-weight: 500;
    color: white;
    font-size: clamp(0.2rem, 1.3vw, 2rem);
    text-align: center;

    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.85);
}

.section6 {
    width: 100vw;
    min-height: 1000px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15vh;
    margin-bottom: 15vh;
    flex-direction: column;
}

.faq {
    list-style: none;
    width: 80%;
}

.faq-title h4 {
    color: white;
    width: 100%;
    text-align: center;
    font-size: 350%;
    margin-bottom: 5vh;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 20px;
    color: white;
    transition: transform 0.3s ease;
    border-radius: 10px;
    background-color: rgba(119, 119, 119, 0.397);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
    transform: scale(1.015);
}

.faq-question {
    font-size: 180%;
    font-weight: 700;
}

.faq-answer {
    font-size: 120%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    padding: 0 10px;
}

.faq-answer p {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


footer {

    width: 100vw;
    height: 20vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 5vh;
}

.footer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100%;
    flex-direction: column;
}

.footer-item h2{
    font-size: 100%;
    color: white;
    text-align: center;
    position: absolute;
}

.footer-item p{

    font-weight: 900;
    font-size: 140%;
    color: white;
}

.footer-item i{
    color: white;
    font-size: 200%;
    margin: 10px;
    transition: transform 0.2s ease;
}

.footer-item i:hover {
    transform: scale(1.2);
}

.footer-item img{
    width: 100%;
    transition: transform 0.3s ease;
}

.footer-item img:hover {
    transform: scale(1.05);
}












































































































































































@media (max-width:768px){

/* HERO */


html {
    overflow-x: hidden;
}

body {
    background-color: black;
    transition: filter 0.5s ease;
}

body > *:not(header) {
    opacity: 1;
    animation: none;
}

@keyframes revealPage {
    to {
        opacity: 1;
    }
}

.dropdown-menu {
    display: flex;
}
.hero {
    width: 100vw;
    height: calc(var(--hero-height) * 3) ;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    margin-bottom: 6rem;

    overflow: hidden;

}

/* LOGO HERO */

.imagem-hero {
    position: relative;
    top: 0%;
    left: 0%;
    z-index: 99;
    width: 100%;
    height: var(--hero-height);

    display: flex;
    justify-content: center;
    align-items: center;

    

}

.imagem-hero img { 
    width: 73%;
    height: auto;
    user-select: none;


    
    top: 1%;
    left: -1%;

    position: relative;

}

/* ÁREA DIREITA */

.hero-right {
    position: relative;
    top: 0%;
    left: 0; 

    width: 100vw;
    height: calc(var(--hero-height) * 2) ;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    

}


.hero-title {
    font-size: 40px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 20px;

    text-align: center;
    position: relative;

    text-shadow: 0 0 10px white;
}

.hero-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;

    width: 100%;
    height: 2px;
    background: white;

}


.panel {
    width: 100vw;
    height: calc(var(--hero-height));

    border-radius: 0px;
    box-shadow: 0 0 5px 1px white;

    position: relative;

    overflow: visible;

    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;

    font-family: 'Michroma', sans-serif;
    font-size: 18px;
    color: white;

    clip-path: none;

    transform: translateX(0%);
    transition: none;

    filter: none;


    background-blend-mode: darken;

    will-change: transform;
    transform: translateZ(0);

    
}

/* IMAGENS */


.fortaleza {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../Imagens/CE-fortaleza-limpo.png');
    width: 100%;

    border-radius: 40px 40px 0 0;

    background-position: 20% center;
    left: 0%;
    top: 0;
    z-index: 5;



}

.balneario {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../Imagens/BC-Banner-limpo.png');

    
    border-radius: 40px;
    background-position: 20% center;
    width: 100%;
    left: 0;
    top: -2%;
    z-index: 6;
}

.goiania {
    background-image: url('../Imagens/Go-Banner-limpo.png');
    width: 60%;
    left: 70%;
    z-index: 3;
}



.encerrado:hover {
    transform: translateX(0) scale(1.0) !important;
    filter: brightness(1.0) !important;
    filter: grayscale(100%) !important;
}

.encerrado:hover span {
    transform: scale(1) !important;
}



/* ANIMAÇÃO DE ENTRADA */

.panel.active {
    transform: none;
}

/* HOVER */

.panel:hover {
    transform: none !important;
    filter: none !important;
    filter: none !important;
}


.panel.highlight {
    transform: none;
    filter:none;
    transition: none;
}

/* TEXTO */

.panel span {

    margin-left: 0rem;
    text-align: center;
    

    font-weight: 900;
    font-size: clamp(0.8rem, 12vw, 12rem);
    font-family: 'Poppins', sans-serif;
    user-select: none;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);

    transition:none;

    filter: brightness(2);

}

.panel:hover span{
    transform: none;
}

.section2 {
    height: var(--hero-height);
    min-height: auto;
    margin-bottom: 0px !important;
    width: 100vw; 
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;

    

}



.section2-container {
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;

}

.section2-left {
    width: 50%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;

}

.section2-left img{
    max-width:0%;
    max-height: 0%;
    object-fit: contain;
    
    user-select: none;

}

.section2-right {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;

    padding: 10% 0;
    overflow: hidden;



}



.texto-introdução {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;

    gap: 0%;
    width: 100%;
    height: calc(var(--hero-height) / 10) ;

    margin-bottom: 10%;
    padding: 0 10px;
}

.texto-introdução img{
    width: 40%;
    margin-bottom: 0px;
    
    user-select: none;


    margin-left: 4%;
}

.texto-introdução p{
    font-size: 40px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 0px;
    text-wrap: nowrap;
}   


.grade-introdução {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    height: calc(var(--hero-height) / 1.5);
    gap: 10px;
    border-radius: 10px;
    padding: 0 10px;

}

.item-grade {

    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 0 10px;

}

.desc {
    transition: opacity 0.3s ease;
    font-weight: 700;
    height: fit-content;
    width: 100%;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    bottom: 10%;
    line-height: 17px;
    font-family: 'Stack Sans Headline', sans-serif;

        background: rgba(202, 202, 202, 0.79);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 15px;
}


.item-grade:hover {
    transform: none;
}

.item-grade p {
    padding-top: 10px;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
    transition:none;
    position: absolute;
    top:0;
}

.item-grade:hover p {
    transform: none;
}

.item-grade img {
    transition: none;
    position: absolute;
    bottom: 10%;
    width: 40%;
    height: auto;
    
    display: none;
    user-select: none;
}

.item-grade:hover img {
    opacity: 0;
    
    user-select: none;
}

.item-grade .desc {
    opacity: 1;
}

.item-grade:hover .desc {
    opacity: 1;
}











.section3 {
    position: relative;
    width: 100vw;
    height: var(--hero-height);
    margin-bottom: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

}

.info  {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.info-title {
    padding-top: 10%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;

}

.info-title h2 {
    font-size: 50px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 20px;
}

.info-title p {
    font-size: 40px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;   
    margin-bottom: 20px;

    display: none;
}


.info-title img{
    width: 50%;
    margin-bottom: 30%;
    user-select: none;
}

.info-card * {
    position: relative;
    z-index: 2;
}

.info-card {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;


    top: 300%;
    
    width: 90%;
    height: 200%;
    border-radius: 20px;
    padding: 5%;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.info-card:hover .info-card-img2{
    opacity: 1;
}

.info-card:hover .info-card-img1{
    opacity: 0;
}


.info-card.active {
    opacity: 1;
    pointer-events: auto;
}

.info-card img{
    position:absolute;
}

.info-card-img1 {
    width: 45%;
    user-select: none;
    opacity: 1;
    left: 28%;
    top: 13.5%;
    transition: opacity 0.5s ease;
}

.info-card-img2 {
    width: 60%;
    user-select: none;
    opacity: 0;
    left: 20.9%;
    top: 7.1%;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.info-card-img2:hover {
    transform:scale(1.05)
}


.info-ce::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../Imagens/CE-fortaleza-limpo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    filter: grayscale(100%) brightness(0.8) blur(2px);
    z-index: 1;
}

.info-ce:hover::before{
    filter: grayscale(0%) brightness(0.8) blur(2px);
}



.info-go::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../Imagens/Go-Banner-limpo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    filter: grayscale(100%) brightness(0.8) blur(2px);
    z-index: 1;
}

.info-go:hover::before{
    filter: grayscale(0%) brightness(0.8) blur(2px);
}


.info-sc::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../Imagens/BC-Banner-limpo.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    filter: grayscale(100%) brightness(0.8) blur(2px);
    z-index: 1;
}

.info-sc:hover::before{
    filter: grayscale(0%) brightness(0.8) blur(2px);
}


.info-text {
    position: absolute;
    height: fit-content;
    bottom: 7%;
    width: 80%;
    background: rgba(83, 83, 83, 0.301);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 10px 0;
    transition: transform 0.2s ease;
}

.info-card:hover .info-text{
    transform: scale(1.02);
}

.info-text p{
    font-size: clamp(0.7rem, 20px, 4rem);
    font-weight: 700;
    color: white;
    text-align: center;
}

.info-text h2 {
    color: white;
    font-size: clamp(1rem, 35px, 5rem);
    text-align: center;
    margin: 10px 0;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
}   






.section3:has(.ce:hover) .info-ce{
    opacity: 1;
}

.section3:has(.go:hover) .info-go{
    opacity: 1;
}

.section3:has(.sc:hover) .info-sc{
    opacity: 1;
}


.mapa {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;


}

.mapa-wrapper {
    position: relative;
    aspect-ratio: 771 / 752;
    width: 100vw;
}

.mapa-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    user-select: none;
}




.ponto {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.ponto:hover {
    transform: scale(1.5) translate(-50%, -50%);
}


.go  {
    top: 56%;
    left: 64%;
    background-color: #349470;
    box-shadow: 0px 0px 15px 10px #25684fbc;
}



.ce {
    top: 26%;
    left: 89%;
    background-color: #ff7112;
    box-shadow: 0px 0px 15px 10px #e06310b2;
}


.sc {
    top: 82%;
    left: 62%;
    background-color: #30d3f8;
    box-shadow: 0px 0px 15px 10px #2fc9ec;
}

.a-card {
    width: 100%;
    height: 100%;
    z-index: 99;
}

@keyframes rainbow {
    0% {
        background: red;
        box-shadow: 0 0 20px red;
    }
    7% {
        background: orange;
        box-shadow: 0 0 20px orange;
    }
    21% {
        background: yellow;
        box-shadow: 0 0 20px yellow;
    }
    36% {
        background: lime;
        box-shadow: 0 0 20px lime;
    }
    50% {
        background: cyan;
        box-shadow: 0 0 20px cyan;
    }
    65% {
        background: blue;
        box-shadow: 0 0 20px blue;
    }
    79% {
        background: violet;
        box-shadow: 0 0 20px violet;
    }
    100% {
        background: red;
        box-shadow: 0 0 20px red;
    }
}

.section4{
    width: 100vw;
    height: calc(var(--hero-height));
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;



}

.section4-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    text-align: center;
}

.section4-title img{
    width: 40%;
}

.section4 h2{
    color: white;
    font-size: 45px;
    margin-bottom: 0vh;
    margin-right: 0px;
    text-align: center;
    margin-left: 0px;
}

.numeros-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;

    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.319);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 10px 10px;
}

.numero {
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 10px;


}

.counter::before {
    content: "+";
}

.numero h3{
    font-size: 45px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;


    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.451);
    background-color: rgba(255, 255, 255, 0.321);
}

.numero p {
    font-size: 30px;
    font-family: 'Stack Sans Headline', sans-serif;
    font-weight: 900;
    color: white;
}





.section5 {


    min-height: auto;
    height: calc(var(--hero-height) / 1.2);
    width: 100%;

    margin-bottom: 0vh;

    padding: 2%;

    flex-direction: column;
    display: flex;
    justify-content: start;
    align-items: center;


}

.section5-text {
    width: 100%;

}

.section5 h3 {
    color: white;
    font-size: clamp(2rem, 50px, 5rem);
    margin-bottom: 10px;
}


.section5 p{

    background-color: rgba(73, 73, 73, 0.589);
    
    padding: 1rem;

    border-radius: 20px;

    font-weight: 500;
    color: white;
    font-size: clamp(0.2rem, 11px, 2rem);
    text-align: center;

    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.85);
}

.section6 {
    width: 100vw;
    min-height: auto;
    height: calc(var(--hero-height) / 1.1 );
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 0;
    flex-direction: column;

}

.faq {
    list-style: none;
    width: 100%;

}

.faq-title h4 {
    color: white;
    width: auto;
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 10px 10px;
    color: white;
    transition: transform 0.3s ease;
    border-radius: 10px;
    background-color: rgba(119, 119, 119, 0.397);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

    margin-bottom: 10px;
}

.faq-item:hover {
    transform: scale(1.015);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
}

.faq-answer {
    font-size: 13px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    padding: 0 10px;
}

.faq-answer p {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


footer {

    width: 100vw;
    height: calc(var(--hero-height) / 5);
    display: grid;
    justify-content: space-around;
    align-items: center;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;


    margin-bottom: 30px;

}

.foota {
    grid-column: 1;
    grid-row: 1;
}

.footb {
    grid-column: 1;
    grid-row: 2;
}

.footc {
    grid-column: 2;
    grid-row: 1 / 3;
}


.footer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.footer-item h2{
    font-size: 10px;
    color: white;
    text-align: center;
    position: relative;
}

.footer-item p{

    font-weight: 900;
    font-size: 20px;
    color: white;

    text-wrap: wrap;

    text-align: center;
}

.footer-item i{
    color: white;
    font-size: 200%;
    margin: 10px;
    transition: transform 0.2s ease;
}

.footer-item i:hover {
    transform: scale(1.2);
}

.footer-item img{
    width: 65%;
    transition: transform 0.3s ease;
}

.footer-item img:hover {
    transform: scale(1.05);
}

}