@charset "UTF-8";
/* CSS Document */

:root {
    --verde: #4ea8be;
}

* {
    box-sizing: border-box;
}

/* 
-------------------------------
-------------------------------
------------- AOS -------------
-------------------------------
-------------------------------
*/
.aos {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease-out;
}
.aos.visible {
    opacity: 1;
    transform: translateY(0);
}

body{
    font-family: 'Alfabet', sans-serif;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-display: swap;
    color: #1f3148;
}
a:link {
	text-decoration: none; 
	color:var(--azul);
    cursor: pointer;
    outline: 0;
}
a:visited {
	text-decoration: none;
	color:var(--azul);
    cursor: pointer;
    outline: 0;
}
a:hover {
	text-decoration: none;
	color:var(--azul);
    cursor: pointer;
    outline: 0;
}
a:active {
	text-decoration: none;
	color:var(--azul);
    cursor: pointer;
    outline: 0;
}


.whatsapp {
    position: fixed;
    width: 60px !important;
    height: 60px !important;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
}
.whatsapp i{
    margin-top: 15px;
}

/*
----------------------
BARRA
----------------------
*/
#barra{
    width: 100vw;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 30px 60px;
    z-index: 9;
    & .logo{
        width: 200px;
        transition: all .5s ease-in-out;
    }
    & .menu{
        color: #FFF;
        margin-left: auto;
        & .item{
            margin-left: 20px;
            cursor: pointer;
            transition:all ease-in-out .2s;
        }
        & .item:hover{
            margin-left: 20px;
            color: var(--vermelho);
        }
    }
    transition: all .5s ease-in-out;
}
.black-bg{
    background-color: #000;
}

/*
----------------------
HOME
----------------------
*/
#home {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    
    & .video {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        & .frase{
            font-size: 60px;
            line-height: 62px;
            font-weight: 700;
            position: absolute;
            left: 60px;
            bottom: 60px;
            color: #FFF;
            & span{
                color: var(--vermelho);
            }

            & .subtitulo{
                width: 35vw;
                font-size: 20px;
                line-height: 25px;
                font-weight: 500;
            }
        }
        & .video_fundo{
            width: 100vw; 
            height: 100vh;
            position: absolute;
            top:0px;
            left: 0px;
            z-index: -500;

            & .filtro_cor{
                width: 100vw; 
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.5);
                position: absolute;
                top:0px;
                left: 0px;
                z-index: 1000;   
            }
        }
    }
}

#nossas_solucoes{
    padding: 100px 0px;
    background-color: #f1f3f3;
    font-weight: 800;
}
#nossas_solucoes .titulo{
    font-size: 60px;
    line-height: 60px;
    color: #1f3148;
    font-weight: 800;
}
#nossas_solucoes .box_titulo{
    width: calc(40% - 20px);
    height: 250px;
}
#nossas_solucoes .box_grande{
    width: calc(40% - 20px);
    height: 250px;
    background-color: var(--verde);
    padding: 20px;
    border-radius: 20px;
    font-size: 30px;
    color: #FFF;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0;
    cursor: pointer;
}
#nossas_solucoes .box_grande:hover{
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
#nossas_solucoes .box_pequeno{
    width: calc(20% - 20px);
    height: 250px;
    background-color: #FFF;
    padding: 20px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 16px;
    position: relative;
}
#nossas_solucoes .box_pequeno img{
    width: 40%;
}
#nossas_solucoes .d-flex{
    gap: 20px;
}
#nossas_solucoes .saiba_mais,
#nossas_solucoes .inf{
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    font-weight: 500;
    padding-right: 20%;
    font-weight: 800;
}
#nossas_solucoes .logo{
    position: absolute;
    bottom: 15px;
    right: 10px;
    font-size: 16px;
    mix-blend-mode: multiply;
    max-width: 130px;
}
#nossas_solucoes .sem_multiply{
    mix-blend-mode: inherit !important;
}
#nossas_solucoes .logo img{
    width: 100%;
}

#segmentos{
    padding: 100px 0;
}
#segmentos .box{
    width: 85%;
    margin: auto;
    border-radius: 40px;
    padding: 50px;
    background-color: var(--verde);
    text-align: center;
    color: #FFF;
}

#segmentos .titulo{
    font-size: 20px;
    font-weight: 700;
    border-radius: 100px;
    border: 1px solid #FFF;
    width: fit-content;
    margin: auto;
    padding: 5px 30px;
}
#segmentos .texto{
    width: 80%;
    margin: 20px auto;
}
#segmentos .item{
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid #FFF;
}
#segmentos .item .icone{
    width: 20%;
    margin: auto;
}

#quem_somos{
    padding: 100px 0;
    background-color: #f1f3f3;
    margin-top: 100px;
    font-size: 14px;
}
#quem_somos .foto{
    background-image: url('../img/quemsomos.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}
#quem_somos .texto{
    padding-left: 30px;
}
#quem_somos .titulo{
    font-size: 50px;
    font-weight: 700;
}
#quem_somos span{
    color: var(--verde);
    font-weight: 700;
}
#quem_somos .bloco{
    background-color: var(--verde);
    padding: 30px;
    border-radius: 20px;
    margin: 20px 0;
    color: #FFF;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
}

#noticias{
    padding: 100px 0;
}
#noticias .titulo{
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
#noticias .a_noticia{
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #f1f3f3;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0;
    cursor: pointer;
    margin-bottom: 40px;
}
#noticias .a_noticia:hover{
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
#noticias .a_noticia:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* você pode ajustar a altura do degradê aqui */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    mix-blend-mode: multiply;
    pointer-events: none;
    border-radius: 20px;
}
#noticias .a_noticia .titulo_noticia{
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #FFF;
    font-size: 20px;
    line-height: 25px;
    padding-right: 10px;
    z-index: 2;
}

#contato{
    background-color: var(--verde);
    padding: 30px;
    text-align: center;
    color: #FFF;
}

#whatsapp {
    padding: 0px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    border-radius: 100px;
    z-index: 999;
  }

/*
----------------------
TRANSIÇÃO
----------------------
*/
.transicao_texto{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5% 15%;
}

.transicao_texto span {
    opacity: 0.2;
    transition: opacity 0.3s ease, color 0.3s ease;
    margin: 0px 8px;
    font-size: 5vw; /* Ajuste conforme necessário */
    line-height: 7vw;
    font-weight: 700;
}

.transicao_texto span.highlight {
    opacity: 1;
    color: #000; /* Define a cor de destaque */
}

#noticiaInterna{
    margin: auto;
    margin-top: 150px;
    max-width: 800px;
}
#noticiaInterna .titulo{
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
}

/*----------------------------------------------*/
/*----------------------------------------------*/
/*-------------- ADAPTAÇÃO MOBILE --------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
@media screen and (max-width: 1200px){
    #barra {
        padding:30px;
        & .menu{
            display: none !important;
        }
    }   

    #home {
        & .video {
            & .frase {
                text-align: center;
                font-size: 40px;
                line-height: 42px;
                left: 0px;
                bottom: 60px;
                width: 100%;
            }
        }
    }

    #nossas_solucoes .box_titulo{
        height: inherit;
        font-size: 20px;
    }
    #nossas_solucoes .box_grande,
    #nossas_solucoes .box_pequeno{
        width: 100%;
    }
    #nossas_solucoes .box_pequeno{
        height: 160px;
    }
    #nossas_solucoes .box_pequeno img {
        width: inherit;
        height: 100px;
    }

    .transicao_texto{
        padding-top: 50px;
    }
    .transicao_texto span{
        font-size: 12vw;
        line-height: 12vw;
    }

    #segmentos .box {
        width: 100%;
        border-radius: 0px;
    }
    #segmentos .texto{
        width: 100%;
        font-size: 20px;
    }
    #segmentos .titulo{
        font-size: 30px;
    }

    #quem_somos{
        padding: 50px 0;
        font-size: 16px;
        text-align: center;
    }
    #quem_somos .titulo{
        text-align: center;
        font-size: 40px;
    }
}