@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Inter", sans-serif;
    background-color: #D4E3FC;
}


:root{
    --cor1:#cc2649;
    --cor2:#992c4b;
    --cor3:#66324c;
    --cor4:#33384e;
    --cor5:#003e4f;

    --color-light: #eaeaea;
    --color-white: #fff;

    --color-azul-nav: #14A2D6;
    --color-preto-footer: #232323;
}

.nav-contatos{
    background-color: #14A2D6;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}

.nav-redes-socias{
    align-items: center;
}

.nav-redes-socias, .nav-info{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;

    display: flex;
    gap:10px;
}

.nav-contatos a {
    color: var(--color-white);
    text-decoration: none;

    &:hover{
        color: var(--color-preto-footer);
    }
}

.nav-info li:first-child {
    border-left: none;
}

.nav-info li {
    border-left: 1px solid white;
    padding: 5px;
}

.menu-bar{
    display: flex;
    align-items: baseline;
}

.menu-div-logo{
    width: 10%;
}

.menu-div-lista{
    width: 60%;
    display: flex;
    justify-content: center;
}

.menu-div-pesquisa{
    width: 30%;
    padding-right: 15px;
}


#img-logo-header{
    width: 100%;
}

.menu-ul{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;

    display: flex;
    gap:20px;
}

.menu-ul a{
    color: black;
    text-decoration: none;

    &:hover{
        color: var(--color-azul-nav);
    }
}



footer{
    background-color: var(--color-preto-footer);
    color: white;
}

#img-logo-footer{
    width: 50%;
}

.sec-footer-logo{
    display: flex;
    padding: 10px 50px;
    justify-content: space-around;
}

.footer-dados{
    align-items: center;
}

.sec-footer-logo > div {
    width: 100%;
}

.redes-sociais-footer{
    display:flex;
    align-items:center;
    justify-content: center;
}

.sec-footer-direitos{
    padding: 10px 10px 10px 50px;
}

.ul-footer-redes{
    list-style: none;
    display: flex;
    gap: 15px;
    padding-left: 0;
}

.ul-footer-redes a {
    color: white;
}

.ul-footer-redes i{
    font-size: 35px;
} 

.hr-footer{
    border: none;           
    height: 3px;                 
    background-color: white;    
    margin: 0px 20px;           
    border-radius: 2px;  
    color: white;
}

.ul-infos-footer{
    list-style: none;
    padding-left: 0;
}

.ul-infos-footer li {
    margin-bottom: 5px;
}

.ul-infos-footer a {
    color: white;
    text-decoration: none;
    
    &:hover{
        color: rgb(92, 90, 90);
    }
}

.li-amarelo{
    color: #FDD91C;
}

.div-newsletter{
    background-color: rgba(212, 227, 252, 0.4);;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid white;
}

.div-newsletter input {
    width: 90%;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.botao-azul{
    width: 90%;
    background-color: #1564BF;
    padding: 5px;
    border-radius: 5px;
    border: none;
    color: white;

    &:hover{
        background-color: #0c478b;
    }
}

/*Template inicio*/

#carouselExampleCaptions{
    max-height: 300px;
}

#carouselExampleCaptions .carousel-item img {
    max-height: 300px;
    object-fit: cover;
}

.inicio-servicos{
    background-color:var(--cor2);
    padding: 15px;
    display: flex;
    justify-content: center;
}
.ul-inicio-servicos{
    display: inline-flex;
    font-size: 20px;
    font-weight: 300;
    color: white;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.ul-inicio-servicos li:first-child {
    border-left: none;
}

.ul-inicio-servicos li {
    text-align: center;
    padding: 15px;

    border-left: 1px solid white;
}


/*Template producao*/

#img-producao{
    max-width: 400px;
    max-height: 400px;
}

.div-producao{
    text-align: center;
}


