@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');
:root {
    --cor-1: #3F3F3F;
    --cor-2: #FF5000;
    --cor-3: #FDB500;
    --cor-4: #f8f8f8;
    --cor-5: #f0f0f0;
    --cor-6: #CDCDCD;
    --bs-font-sans-serif: 'Alegreya Sans', system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}
html, body {
    overflow-x: hidden;
}
html.open, body.open {
    overflow: hidden;
}
header {
    --altura: 135px;
    top: 0;
    left: 0;
    position: fixed;
    height: var(--altura);
    width: 100%;
    z-index: 5;
    background-color: transparent;
    transition: 0.5s;
}

#logo {
    height: var(--altura);
    margin: 0;
    transition: 0.5s;
}
#logo img {
    width: 150px;
    transition: 0.5s;
}
#logo span {
    color: transparent;
    font-size: 0px;
    position: absolute;
}

#menu-principal {
    display: flex;
    height: var(--altura);
    justify-content: flex-end;
    align-items: center;
    transition: 0.5s;
}
#menu-principal ul {
    gap: 5px;
    margin: 0;
}
#menu-principal .opc-menu a {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    text-decoration: none;
    padding: 0 24px;
    border-radius: 24px;
    color: var(--cor-1);    
    font-size: 16px;
    transition: 0.3s;
}

#menu-principal .opc-menu.active a, #menu-principal .opc-menu a:hover {
    color: white;
    background-color: var(--cor-2);
    font-weight: 700;
}
#menu-principal .opc-menu a::before {
    display: block;
    content: attr(title);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
#menu-principal .opc-social {
    gap: 7px;
}
#menu-principal .opc-social a {
    display: inline-block;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: var(--cor-2);    
    font-size: 16px;

}

header.scroll {
    --altura: 100px;
    box-shadow: 0px 2px 4px rgba(0,0,0,.1);
    background-color: white;
}
header.scroll #logo img {
    width: 110px;
}

header.scroll #menu-principal .opc-menu a {
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 14px;
}

#banner {
    height: 775px;
}
#banner .imagem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
#banner .info {
    height: 775px;
    gap: 35px;    
}
#banner .frase {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--cor-2);
    text-transform: uppercase;
}

/***/
.depoimentos {
    margin-bottom: 100px;
}
.depoimentos .depoimento {
    position: relative;
}
.depoimentos .sombra {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
    z-index: 0;
    border-radius: 50%;
}
.depoimentos .info {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--cor-4);
    border: 1px solid var(--cor-5);
}
.depoimentos .stars {
    margin-bottom: 22px;
    font-size: 12px;
}
.depoimentos .stars i {
    color: var(--cor-3);
}

.depoimentos .texto {
    height: 125px;
    overflow: hidden;
    margin-bottom: 22px;
}

.depoimentos .depoente {
    height: 50px;
    overflow: hidden;
    display: flex;
    gap: 15px;
}
.depoimentos .depoente .imagem {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
}
.depoimentos .depoente .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.depoimentos .dados strong {
    font-size: 16px;
    font-weight: 700;
}
.depoimentos .dados em {
    font-size: 16px;
    font-weight: 300;
}

/***/
#parceiro {
    background-color: var(--cor-2);
    padding: 100px 0;
}
#parceiro .elemento {
    bottom: 0;
    left: -400px;
    z-index: 0;
}
#parceiro input {
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 9px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 300;
    color: var(--cor-1);
    margin-bottom: 9px;
    padding: 0 15px;
    width: 100%;
}
#parceiro textarea {
    height: 140px;
    padding: 10px 15px;
    background-color: white;
    border: none;
    border-radius: 9px;
    line-height: 24px;
    font-size: 20px;
    font-weight: 300;
    color: var(--cor-1);
    margin-bottom: 9px;
    width: 100%;
}
#parceiro button { 
    height: 50px;
    background-color: var(--cor-1);
    border: none;
    border-radius: 9px;
    line-height: 50px;
    font-size: 20px;
    color: white;
    padding: 0 15px;
    width: 100%;
    font-weight: 600;
}

#parceiro .titulo-extra{
    font-size: 38px;
}

/***/
#onde-estamos {
    padding: 50px 0;
}
#onde-estamos .info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#onde-estamos .mapa img {
    max-width: 100%;
}

#onde-estamos span {
    font-size: 14px;
    color: var(--cor-1);
    font-weight: 400;
    display: block;
    text-align: right;
}
#onde-estamos i {
    color: #4cb926;
    font-size: 22px;
}

/***/
#projetos {
    margin-bottom: 80px;
}
#projetos .projeto {
    display: block;
    position: relative;
    margin-bottom: 18px;
}
#projetos .projeto .info {
    position: absolute;
    z-index: 2;
    padding: 35px;
    width: 100%;
}
#projetos .projeto .info .nome {
    font-size: 25px;
    font-weight: 800;
    display: block;
    
}
#projetos .projeto .info.white .nome {
    color: white;
    filter: drop-shadow(0px 2px 2px rgb(0, 0, 0));
}
#projetos .projeto .info.cor-1 .nome {
    color: var(--cor-1);
    filter: drop-shadow(0px 2px 2px rgba(255,255,255, .9));
}
#projetos .projeto .info .local {
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
}
#projetos .projeto .info.white .local {
    color: white;
    filter: drop-shadow(0px 2px 2px rgb(0, 0, 0));
}
#projetos .projeto .info.cor-1 .local {
    color: var(--cor-1);
    filter: drop-shadow(0px 2px 2px rgba(255,255,255, .9));
    
}
#projetos .projeto .imagem {
    height: 655px;
    border-radius: 20px;
    display: block;
    overflow: hidden;
}
#projetos .projeto.metade .imagem {
    height: 318px;
    border-radius: 20px;
    display: block;
    overflow: hidden;
}
#projetos .projeto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/***/
#banner-central {
    position: relative;
    height: 523px;
}
#banner-central img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

/***/
#midia {
    background-color: var(--cor-4);
    padding: 55px 0;
}
#midia .midias {
    margin-bottom: 55px;
}
#midia .midia .categoria {
    font-size: 16px;
    font-weight: 700;
    padding-left: 15px;
    border-left: 3px solid var(--cor-2);
    text-transform: uppercase;
    color: var(--cor-2);
    height: 33px;
    line-height: 33px;
    margin-bottom: 18px;
}
#midia .midia .imagem {
    max-width: 345px;
    width: 100%;
    height: 155px;
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 40px;
}
#midia .midia .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#midia .midia .titulo-midia {
    height: 160px;
    overflow: hidden;
    font-size: 35px;
    line-height: 40px;
    color: var(--cor-1);
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#midia .midia .texto {
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
}
#midia .midia .area-link a {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--cor-2);
    font-weight: 700;
    text-decoration: none;
}
#midia .midia .area-link a i {
    display: inline-block;
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--cor-6);
    font-size: 10px;
    color: white;
    margin-right: 10px;
}
.lnk {
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--cor-1);
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid var(--cor-1);
}

/***/
#contato {
    padding: 55px 0 105px 0;
}
#contato input {
    height: 50px;
    background-color: white;
    border: 1px solid var(--cor-1);
    border-radius: 9px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 300;
    color: var(--cor-1);
    margin-bottom: 9px;
    padding: 0 15px;
    width: 100%;
}
#contato textarea {
    height: 140px;
    padding: 10px 15px;
    background-color: white;
    border: 1px solid var(--cor-1);
    border-radius: 9px;
    line-height: 24px;
    font-size: 20px;
    font-weight: 300;
    color: var(--cor-1);
    margin-bottom: 9px;
    width: 100%;
}
#contato button { 
    height: 50px;
    background-color: var(--cor-1);
    border: 1px solid var(--cor-1);
    border-radius: 9px;
    line-height: 50px;
    font-size: 20px;
    color: white;
    padding: 0 15px;
    width: 100%;
    font-weight: 600;
}

/****/
footer {
    padding: 70px 0;
    background-color: var(--cor-2);
}
footer .endereco {
    gap: 30px;
}
footer .endereco i {
    font-size: 26px;
}
footer address a {
    font-size: 15px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-decoration: none;
}
footer .sociais {
    gap: 5px;
}
footer .sociais strong {
    font-size: 15px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    margin-right: 15px;
}
footer .sociais i {
    display: inline-block;
    background-color: var(--cor-1);
    color: var(--cor-2);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
}
.whatsapp-suspenso {
    z-index: 5;
    right: 50px;
    bottom: 50px;
}
.whatsapp-suspenso img {
    filter: drop-shadow(10px 10px 10px rgba(0,0,0,.2));
}

/*****/
.texto {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.texto.cor-1 {
    color: var(--cor-1);
}
.titulo-extra {
    font-size: 70px;
    font-weight: 800;
    line-height: 74px;
}
.titulo-extra.white {
    color: white;
}
.titulo-extra.cor-2 {
    color: var(--cor-2);
}
.titulo {
    font-size: 40.1px;
    line-height: 48px;
    font-weight: 800;
}
.titulo.cor-1{
    color: var(--cor-1);
}
.titulo.cor-2{
    color: var(--cor-2);
}
.sub-titulo {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}
.sub-titulo.cor-1 {
    color: var(--cor-1);
}

/*-xl*/
@media (max-width: 1399.98px) {
}

/*-lg*/
@media (max-width: 1199.98px) {
}

/*-md*/
@media (max-width: 991.98px) {
    header {
        --altura: auto;
        padding: 5px 0;
    }
    header.scroll {
        --altura: auto;
    }
    #logo {
        margin: 15px 0;
    }
    #menu-principal {
        justify-content: center;
    }

    /***/
    .depoimentos .stars {
        margin-bottom: 10px;
    }
    .depoimentos .info {
        padding: 10px;
    }
    .depoimentos .texto {
        height: 120px;
    }
    .depoimentos .depoente {
        height: 80px;
    }

    /***/
    #midia .midia .titulo-midia {
        height: 200px;
    }
    #midia .midia .texto {
        height: 80px;
    }

    /***/
    .titulo-extra {
        font-size: 50px;
        line-height: 54px;
    }
}

/*-sm*/
@media (max-width: 767.98px)  {
    #logo {
        z-index: 15;
    }
    #logo img {
        width: 110px;
    }

    #bt-menu {
        z-index: 15;
        right: 20px;
        top: 20px;
        border: none;
        background: none;

    }
    #bt-menu i {
        color: var(--cor-2);
        font-size: 26px;
        font-weight: 700;
    }
    #bt-menu i.close {
        display: none;
    }
    #bt-menu.open i.close {
        display: inline;
    }
    #bt-menu.open i.open {
        display: none;
    }

    #menu-principal {
        position: fixed;
        z-index: 10;
        left: -101vw;
        width: 100vw;
        height: 100vh;
        background: white;
        border-right: 1px solid var(--cor-6);
    }
    #menu-principal ul {
        gap: 20px;
        flex-direction: column;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    header.scroll #menu-principal .opc-menu a {
        height: 45px;
        line-height: 45px;
        padding: 0 24px;
        border-radius: 24px;
        font-size: 16px;
    }
    #menu-principal .opc-social {
        gap: 20px;
    }
    #menu-principal.open {
        left: 0;
    }

    /***/
    #banner {
        height: 500px;
    }
    #banner .imagem  { 
        height: 500px;
    }
    #banner .imagem img { 
        height: 100%;
    }
    #banner .info  { 
        height: 500px;
    }

    /***/
    .depoimento {
        margin-bottom: 30px;
    }
    .depoimentos .info {
        padding: 20px 15px;
    }
    .depoimentos .texto {
        height: auto;
    }
    .depoimentos .depoente {
        height: auto;
    }

    /***/
    #banner-central {
        height: 300px;
    }

    /****/
    #midia .midia {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--cor-6);
    }
    #midia .midia .imagem {
        max-width: none;
        height: 200px;
    }
    #midia .midia .titulo-midia {
        height: auto;
    }
    #midia .midia .texto {
        height: auto;
    }


    /****/
    #logo-rodape {
        text-align: center;
    }
    footer .endereco {
        flex-direction: column;
        gap: 0;
    }
    footer address {
        margin-bottom: 0;
    }
    footer address br {
        display: none;
    }
    footer .sociais {
        text-align: center;
    }
    footer .sociais strong {
        margin: 0;
    }

    /***/
    .titulo {
        font-size: 30px;
        line-height: 34px;
    }
    .sub-titulo {
        font-size: 18px;
        line-height: 22px;
    }
}

/*-xs*/
@media (max-width: 575.98px) {
    #banner {
        height: auto;
        margin-bottom: 50px;
    }
    #banner br {
        display: none;
    }
    #banner .imagem {
        position: static;
        height: 250px;
        transform: none;
        margin-top: 80px;
    }
    #banner .info {
        height: auto;
    }


    /***/
    #banner-central {
        height: 200px;
    }


    /***/
    footer .endereco {
        text-align: center;
    }


    /***/
    .titulo-extra {
        font-size: 48px;
    }
}