#section1{
    display: grid;
    place-items: center; /* Centraliza tanto horizontal quanto verticalmente */
    height: fit-content; /* Faz a div ocupar toda a altura da tela */
    width: 100vw;
    position: relative;
}

#textSection1{
    position: absolute;
    top: 50%;
    left: 16%;
    transform: translate(0%, -40%);
    color: white;
    z-index: 100;
    font-size: 30px;
    max-width: 700px;
}

.btSaibaMais{
    padding: 10px 20px;
    background-color: #e22e27;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: ease-in-out 0.3s;
    width: fit-content;
    animation: efeitoBt 0.5s ease-in-out;
}

@keyframes efeitoBt {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes efeitoBtHover {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(0.9);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.btSaibaMais:hover{
    background-color: #379d5b;
    /* transition: ease-in-out 0.3s; */
    animation: efeitoBtHover 0.5s ease-in-out;
}

.effectLogos a img{
    transform: scale(1);
    transition: ease-in-out 0.3s;
}
.effectLogos a img:hover{
    transform: scale(1.1);
    transition: ease-in-out 0.3s;
}

#menuPrincipal div a {
    color: white;
}

#section3 {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

#containerTitleVideo, #containerTitleCarrossel1 {
    width: 1000px;
    margin-bottom: 50px;
}

#containerTitleVideo p, #containerTitleCarrossel1 p {
    font-size: 3rem;
    width:500px;
    line-height: 3rem;
}




/* CARROSSEL 1*/
#displayCarrossel1 {
    width: 1000px;
    height: 320px;
    overflow: hidden;
    background: white   ;
    margin-bottom: 30px;
    padding: 10px 0;
    position: relative;
}
#carrossel1Container {
    position: absolute;
    left: 0px;
    display: flex;
    width: fit-content;
    gap: 10px;
}

#indtechs, #delegate, #partnership {
    width: 400px;
    border-radius: 25px 10px 10px 10px;
    border: 1px solid #dadada;
    overflow: hidden;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.05);
}

.imgbanner{
    width: 400px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cardContent {
    padding: 20px;
}

.textInfoCardCarrossel1 {
    font-size: 12px;
    margin-top:10px;
}

.CardBannerTitle {
    /* display: flex;
    justify-content:center;
    align-items: center; */
    text-align: center;
    font-family: Inter;
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: -3px;
    padding: 50px;
    line-height: 40px;
}

#delegate {
    border-radius: 10px 25px 10px 10px;
}


#indtechs .imgbanner{
    background-color: #0A9446;
    color: white;
    overflow: hidden;
}

#delegate .imgbanner{
    background-color: #E22E27;
    color: white;
}

#partnership .imgbanner{
    background-color: #000000;
    color: white;
}


.btNextPrev{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 1px solid #000; */
    text-align: center;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: #4A5565;
    pointer-events: visible;
    cursor: pointer;
}
.btNextPrevOver:hover {
    background: #cdcdcd;
}
.btNextPrevDesabled{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 1px solid #000; */
    background: white;
    text-align: center;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerBtCarrossel {
    display: flex;
    gap: 20px;
    cursor: pointer;
    margin-bottom: 30px;
}

#containerIndtechsLogo {
    position: absolute;
    left: 0px;
    display: flex;
    width: fit-content;
}

#containerIndtechsLogo .indtechsCads {
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#containerBtCarrosselIndtechs {
    position: absolute;
    width: 400px;
    height:150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 20px;
    pointer-events: none;
}


/*
* Início do FAQ
*/
#faqContainerGeneral{
    width: 100vw;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}
.questionContainerGeneral {
    border: 1px solid #DDE1E6;
    width: 1000px;
}
.titleQuestionGeneral{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}
.titleQuestion, .moreQuestion{
    padding: 10px;
    color: #000;
    font-weight: bold;
    font-family: 'Rubik';
    display: flex;
    justify-content: center;
    align-items: center;
}
.moreQuestion{
    font-size: 1.3rem;
}
.questionContent{
    /* padding: 10px; */
    height: 0px;
    overflow: hidden;
}


/*
* HOVER MENU
**/
.effectmouse{
    background: transparent;
    transition: ease-in-out 0.3s;
}
.effectmouse:hover{
    background: var(--color);
    transition: ease-in-out 0.3s;
}
