@font-face {
    font-family: 'Menlo';
    src: url('/fonts/Menlo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Rubik';
    src: url('/fonts/Rubik/Rubik-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter';
}

#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: red;
    border-radius: 30px;
    font-size: 1.2rem;
}

#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;
}


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


/* 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 #cdcdcd;
}

.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 {
    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%;
    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%;
    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;
    height: 100%;
    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;
} */