* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Paytone one', sans-serif;
    font-family: 'Anton', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --main-font-family: 'Poppins', sans-serif;
    --big-tittles-font-family: 'Paytone one', sans-serif;
    --secunday-font-family: 'Roboto', sans-serif;
    --h2-font-family: 'Anton', sans-serif;
    --italic-font-family: 'Times New Roman', Times, serif;
    --bg-color: #ffffff;
    --text-color: #000;
    --main-color: #fa0336;
    --secundary-color: #3a3a3a;
    --third-color: #003366;
    --big-font: 4rem;
    --titles-center-font: 3rem;
    --h2-font: 2.3rem;
    --h3-font: 1.7rem;
    --p-font: 1.1rem;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}



/*-----------------------Mundo-dagua-Inicio----------------------*/

section{
    padding: 100px 14.2%;
}

.mundodagua{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: url(../img/fundo-branco-principal.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 4rem;
}

.mundodagua-text h1{
    margin: 100px 0px 15px;
    font-size: var(--big-font);
    font-family: var(--big-tittles-font-family);
    line-height: 1;
    font-weight: 800;
}


/*--Botão-Visitar-Site-Mundo-dagua-Pág-Principal--*/

.btn-MA{
    display: inline-block;
    color: var(--bg-color);
    background-color: var(--main-color);
    font-size: var(--p-font);
    padding: 10px 40px;
    margin-top: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--secunday-font-family);
    border-radius: 30px;
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 30%);
    transition: ease .40s;
}

.btn-MA:hover{
    transform: scale(1.1);
    box-shadow: 0px 18px 10px rgb(0, 0, 0, 40%);
    font-weight: 800;
}

/*--Foto-Mundo-dagua-pág-principal--*/

.main-MA-img{
    position: relative;
}

.main-MA-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 80%);
    border-radius: 10px;
    margin-left: 61px;
    margin-bottom: -95px;
}


/*---Botão-scroll-up---*/

.scroll-up-btn{
    position: fixed;
    width: 43px;
    height: 43px;
    right: 30px;
    bottom: 30px;
    text-align: center;
    line-height: 50px;
    color: var(--bg-color);
    background-color: var(--main-color);
    border-radius: 50px;
    font-size: 30px;
    z-index: 9999;
    opacity: 0.7;
    cursor: pointer;   
    display: grip;
    transition: all 0.3s ease;
}

.scroll-up-btn.show{
    display: grid;
    opacity: 0.7;
    bottom: 30px;

}

.scroll-up-btn:hover{
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 30%);
}


/*-----------------------Informações-do-Projeto----------------------*/

/*-------Informações-do-Projeto-Tilulo-------*/

.informacoes-do-projeto{
    font-family: var(--main-font-family);
    font-size: var(--titles-center-font);
    width: 100%;
    margin: 30px auto;
    text-align: center;
    color: var(--text-color); 
    line-height: 1;
    font-weight: 800;
    margin-top: 0.5%; 
}

.informacoes-do-projeto span{
    color: var(--main-color);
}

/*-------Informações-do-Projeto-Conteudo-------*/

.inf-do-projeto-conteudo{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 2rem;
    align-items: center;
    margin-top: -8%;
    margin-bottom: -160px;
    text-align: center;
}

.cliente{
    background: #ffffff;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    border-radius: 12px;
    padding: 45px 45px 45px 45px;
    transition: ease .45s;
}

.objetivo{
    background: #ffffff;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    border-radius: 12px;
    padding: 45px 45px 45px 45px;
    transition: ease .45s;
}

.icon-cliente{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #0000ee;
    color: var(--bg-color);
    margin-top: -10%;
    margin-bottom: 20px;
}

.cliente h3{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--h2-font-family);
}

.cliente p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
}

.cliente p i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

.icon-objetivo{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #ff4f18;
    color: var(--bg-color);
    margin-top: -10%;
    margin-bottom: 20px;
}

.objetivo h3{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--h2-font-family);
}

.objetivo p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
}

.objetivo p i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

.cliente:hover{
    transform: scale(1.03);
}

.objetivo:hover{
    transform: scale(1.03);
}

/*-----------------------Imagem-Principal-MA----------------------------*/

.img-principal-MA-conteudo{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    grid-gap: 2rem;
    align-items: center;
    margin-top: 7.5%;
    text-align: center;
}

.img-principal-MA{
    position: relative;
}

.img-principal-MA img{
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    box-shadow: 0 0 35px  rgb(59 79 103 / 80%);
    border-radius: 12px; 
}

.img-principal-MA:hover{
    object-fit: cover;
    border-radius: 12px;
    color: #3b4f67;
    box-shadow: 0 0 35px rgb(59 79 103 / 80%), 0px 0px 15px  rgb(59 79 103 / 80%) inset;
}

/*-----------------------Produtos-de-Água----------------------*/

.produtos-de-agua{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: right;
    grid-gap: 2rem;
    margin-top: -3%;
}

/*---Produtos-de-Água-Titulo-Responsivo---*/

.produtos-de-agua-titulo-responsivo h3{
    display: none;
    font-family: var(--h2-font-family);
    font-size: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-top: 120px;
    margin-bottom: 50px;
}

/*-------Produtos-de-Água-texto-------*/

.produtos-de-agua-txt{
    margin-top: 20%;
}

.produtos-de-agua-txt h3{
    font-family: var(--h2-font-family);
    font-size: 45px;
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.produtos-de-agua-txt p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

.produtos-de-agua-txt i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

/*-------Produtos-de-Água-Imagem-------*/

.produtos-de-agua-imagem{
    text-align: center;
    position: relative;
}

.produtos-de-agua-imagem img{
    max-width: 100%;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 30%);
    border-radius: 10px;
    width: 500px;
    height: 500px;
    margin-left: 5%;

}

/*-----------------------Produtos-para-Habitação----------------------*/

.produtos-para-habitacao{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 2rem;
    margin-top: -3%;
}

/*---Produtos-para-Habitação-Titulo-Responsivo---*/

.produtos-para-habitacao-responsivo h3{
    display: none;
    font-family: var(--h2-font-family);
    font-size: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-top: 120px;
    margin-bottom: 50px;
}

/*-------Produtos-para-Habitação-Imagem-------*/

.produtos-para-habitacao-imagem{
    text-align: center;
    position: relative;
}

.produtos-para-habitacao-imagem img{
    max-width: 100%;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 30%);
    border-radius: 10px;
    width: 500px;
    height: 500px;
    margin-left: -30px;
}

/*-------Produtos-para-Habitação-Texto-------*/

.produtos-para-habitacao-texto{
    padding-left: 22px;
    margin-top: 30px;
}

.produtos-para-habitacao-texto h3{
    font-family: var(--h2-font-family);
    font-size: 45px;
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.produtos-para-habitacao-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

.produtos-para-habitacao-texto i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

/*------------------------------Produtos----------------------------*/

.produtos{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: right;
    grid-gap: 2rem;
    margin-top: -3%;
}

/*---Produtos-Titulo-Responsivo---*/

.produtos-titulo-responsivo h3{
    display: none;
    font-family: var(--h2-font-family);
    font-size: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-top: 120px;
    margin-bottom: 50px;
}

/*-------Produtos-Texto------*/

.produtos-texto{
    margin-top: 65px;
}

.produtos-texto h3{
    font-family: var(--h2-font-family);
    font-size: 45px;
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.produtos-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

.produtos-texto i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

/*-------Produtos-Imagem------*/

.produtos-imagem{
    text-align: center;
    position: relative;
}

.produtos-imagem img{
    max-width: 100%;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 30%);
    border-radius: 10px;
    width: 500px;
    height: 500px;
    margin-left: 5%;
}

/*------------------------------Notícias----------------------------*/

.noticias{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 2rem;
    margin-top: -3%;
}

/*---Notícias-Titulo-Responsivo---*/

.noticias-titulo-responsivo h3{
    display: none;
    font-family: var(--h2-font-family);
    font-size: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-top: 120px;
    margin-bottom: 50px;
}

/*-------Notícias-Imagem------*/

.noticias-imagem{
    text-align: center;
    position: relative;
}

.noticias-imagem img{
    max-width: 100%;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 30%);
    border-radius: 10px;
    width: 500px;
    height: 500px;
    margin-left: -30px;
}

/*-------Notícias-Texto------*/

.noticias-texto{
    padding-left: 22px;
    margin-top: 30px;
}

.noticias-texto h3{
    font-family: var(--h2-font-family);
    font-size: 45px;
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.noticias-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

/*--------------------------Recrutamento----------------------------*/

.recrutamento{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: right;
    grid-gap: 2rem;
    margin-top: -3%;
}

/*---Recrutamento-Titulo-Responsivo---*/

.recrutamento-titulo-responsivo h3{
    display: none;
    font-family: var(--h2-font-family);
    font-size: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-top: 120px;
    margin-bottom: 50px;
}

/*-------Recrutamento-Texto------*/

.recrutamento-texto{
    margin-top: 105px;
}

.recrutamento-texto h3{
    font-family: var(--h2-font-family);
    font-size: 45px;
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.recrutamento-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

/*-------Recrutamento-Imagem------*/

.recrutamento-imagem{
    text-align: center;
    position: relative;
}

.recrutamento-imagem img{
    max-width: 100%;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 30%);
    border-radius: 10px;
    width: 500px;
    height: 500px;
    margin-left: 5%;
}

/*--------------------------Contacto----------------------------*/

.contacto-MA{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 2rem;
    margin-top: -3%;
}

/*---Contacto-Titulo-Responsivo---*/

.contacto-MA-titulo-responsivo h3{
    display: none;
    font-family: var(--h2-font-family);
    font-size: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-top: 120px;
    margin-bottom: 50px;
}

/*-------Contacto-Imagem------*/

.contacto-MA-imagem{
    text-align: center;
    position: relative;
}

.contacto-MA-imagem img{
    max-width: 100%;
    box-shadow: 5px 14px 35px 10px rgb(59 79 103 / 30%);
    border-radius: 10px;
    width: 500px;
    height: 500px;
    margin-left: -30px;
}

/*-------Contacto-Texto------*/

.contacto-MA-texto{
    padding-left: 22px;
    margin-top: 30px;
}

.contacto-MA-texto h3{
    font-family: var(--h2-font-family);
    font-size: 45px;
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.contacto-MA-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

.contacto-MA-texto i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

/*-----------------------Resultado----------------------*/

.resultado{
    align-items: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    border-radius: 12px;
    padding: 45px 45px 45px 45px;
    transition: ease .45s;
    margin-top: -4%;
}

.icon-resultado{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: var(--main-color);
    color: var(--bg-color);
    margin-top: -10%;
    margin-bottom: 20px;
}

.resultado h3{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--h2-font-family);
}

.resultado p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    margin-top: 15px;
    margin-left: 132px;
    margin-right: 132px;
}

.resultado p i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    line-height: 28px;
    font-weight: 900;
}

.resultado p a i{
    font-family: var(--italic-font-family);
    font-size: var(--p-font);
    color: var(--main-color);
    line-height: 28px;
    font-weight: 900;
}

.resultado:hover{
    transform: scale(1.03);
}

.link-voltar-portfolio a{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: #4632da;
    line-height: 28px;
    font-weight: 400;
    padding-left: 20px;
}


/*----------------------------------------------Responsivo----------------------------------------------------*/

/*-----------------------Responsivo-Header-Home----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    header{
        padding: 16px 3%;
        transition: .3s;
    }
    header.sticky{
        padding: 10px 3%;
        transition: .3s;
    }
    .logo img{
        width: 170px;
        height: auto;
    }
    section{
        padding: 70px 1%;
        transition: .3s;
    }
    :root{
        --big-font: 3rem;
        --titles-center-font: 2.5rem;
        --h2-font: 2.1rem;
        --h3-font: 1.8rem;
        --h4-font: 1.5rem;
        --p-font: 1rem;
        transition: .3s;
    }
}

/*-----------------------Responsivo-Header----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .logo img{
        width: 150px;
        height: auto;
    }
}

/*-----------------------Responsivo-Header-Telemóvel----------------------------*/

/*---------650px--------*/

@media (max-width: 650px){
    .logo img{
        width: 130px;
        height: auto;
    }
}

/*---------450px--------*/

@media (max-width: 450px){
    .logo img{
        width: 115px;
        height: auto;
    }
}

/*---------398px--------*/

@media (max-width: 398px){
    .logo img{
        width: 108px;
        height: auto;
    }
}

/*---------375px--------*/

@media (max-width: 375px){
    #menu-icon{
        text-align: center;
    }
}

/*---------350px--------*/

@media (max-width: 350px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 108px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.6rem;
        text-align: center;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        margin: 40px 0 0;
        padding-left: 137px;
        font-size: 0.7rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*-----------------------Responsivo-Home-Mundodagua----------------------------*/

/*---------1500px--------*/

@media (max-width: 1500px){
    .mundodagua-text h1{
        font-size: 60px;
    } 
}

/*---------1425px--------*/

@media (max-width: 1425px){
    .mundodagua{
        padding: 70px 7%;
    }
    .main-MA-img img{
        margin-left: 120px;
        margin-top: -15px;
        width: 450px;
        height: auto;
    }
    .mundodagua-text{
        margin-left: -5px;
    }
    .mundodagua-text h1{
        font-size: 60px;
    }
}

/*---------1268px--------*/

@media (max-width: 1268px){
    .main-MA-img img{
        margin-left: 10px;
        margin-top: -15px;
        width: 450px;
        height: auto;
    }
}

/*---------1235px--------*/

@media (max-width: 1235px){
    .mundodagua-text{
        margin-left: -25px;
    }
    .mundodagua-text h1{
        font-size: 50px;
    }
}

/*---------1145px--------*/

@media (max-width: 1145px){
    .mundodagua-text{
        margin-left: 5px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .mundodagua{
        min-height: 95vh;
    }
    .main-MA-img img{
        width: 410px;
    }
    .mundodagua-text h1{
        font-size: 40px;
    }
    .btn-MA{
        font-size: 16px;
    }
}

/*---------925px--------*/

@media (max-width: 925px){
    .mundodagua{
        min-height: 82.7vh;
    }
    .mundodagua-text{
        margin-left: -15px;
    }
    .mundodagua-text h1{
        font-size: 36px;
    }
    .btn-MA{
        font-size: 15px;
    }
}

/*---------870px--------*/

@media (max-width: 870px){
    .main-MA-img img{
        width: 360px;
    }
}

/*---------810px--------*/

@media (max-width: 810px){
    .mundodagua{
        min-height: 72.5vh;
    }
    .main-MA-img img{
        width: 340px;
    }
    .mundodagua-text{
        margin-left: -12px;
    }
    .mundodagua-text h1{
        font-size: 30px;
    }
    .btn-MA{
        font-size: 13px;
    }
}

/*-----------------------Responsivo-Home-Mundodagua-Telemóvel----------------------------*/

/*---------760px--------*/

@media (max-width: 760px){
    .mundodagua{       
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .main-MA-img img{
        width: 400px;
        height: auto;
        margin-left: 2px;
        margin-top: 70px;
        align-items: center;
        justify-content: center;
    }
    .mundodagua-text{
        margin-left: 2px;
        margin-top: 5px;
        text-align: center;
    }
    .mundodagua-text h1{
        font-size: 50px;
    }
    .btn-MA{
        font-size: 16.5px;
        margin-left: 2px;
        margin-bottom: 20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .main-MA-img img{
        width: 380px;
        height: auto;
    }
    .mundodagua-text h1{
        font-size: 40px;
    }
    .btn-MA{
        font-size: 15px;
        margin-bottom: 0;
    }
}

/*---------460px--------*/

@media (max-width: 460px){
    .main-MA-img img{
        width: 100%;
        height: auto;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .mundodagua-text{
        margin-top: -13px;
    }
    .mundodagua-text h1{
        font-size: 34px;
    }
    .btn-MA{
        font-size: 14px;
        margin-bottom: 0;
    }
}

/*---------390px--------*/

@media (max-width: 390px){
    .main-MA-img img{
        margin-top: 60px;
    }
}

/*---------360px--------*/

@media (max-width: 360px){
    .mundodagua-text h1{
        font-size: 30px;
    }
}

/*-----------------------Responsivo-Informações-do-Projeto----------------------------*/

/*---------1450px--------*/

@media (max-width: 1450px){
    .informacoes-do-projeto{
        margin-bottom: 55px;
    }
    .inf-do-projeto-conteudo{
        padding: 70px 1%;
        margin-bottom: 80px;
        padding: 45px 45px 45px 45px;
    }
}

/*---------1425px--------*/

@media (max-width: 1425px){
    .informacoes-do-projeto{
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 80px;
    }
    .inf-do-projeto-conteudo{
        padding: 70px 1%;
        margin-bottom: 80px;
        padding: 45px 45px 45px 45px;
    }
}

/*---------1160px--------*/

@media (max-width: 1160px){
    .inf-do-projeto-conteudo{
        padding: 20px 20px 20px 20px;
        margin-bottom: 80px;
    }
}

/*---------1105px--------*/

@media (max-width: 1105px){
    .inf-do-projeto-conteudo{
        padding: 80px 1%;
        margin-top: -150px;
    }
}

/*---------1087px--------*/

@media (max-width: 1087px){
    .inf-do-projeto-conteudo{
        padding: 45px 45px 45px 45px;
        margin-top: -110px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .informacoes-do-projeto h2{
        font-size: 55px;
    }
    .cliente h3{
        font-size: 28px;
    }
    .objetivo h3{
        font-size: 28px;
    }
    .cliente p{
        font-size: 16px;
    }
    .objetivo p{
        font-size: 16px;
    }
    .cliente p i{
        font-size: 16px;
    }
    .objetivo p i{
        font-size: 16px;
    }
    .icon-cliente{
        width: 38px;
        height: 38px;
    }
    .icon-objetivo{
        width: 38px;
        height: 38px;
    }
}

/*---------1055px--------*/

@media (max-width: 1055px){
    .inf-do-projeto-conteudo{
        padding: 10px 10px 10px 10px;
        margin-top: -80px;
    }
}

/*-----------------------Responsivo-Informações-do-Projeto-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .inf-do-projeto-conteudo{
        display: block;
        padding: 5px 7%;
    }
    .cliente{
        margin-bottom: 40px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .cliente h3{
        font-size: 26px;
    }
    .objetivo h3{
        font-size: 26px;
    }
    .icon-cliente{
        width: 36px;
        height: 36px;
    }
    .icon-objetivo{
        width: 36px;
        height: 36px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .informacoes-do-projeto h2{
        font-size: 50px;
    }
    .cliente h3{
        font-size: 24px;
    }
    .objetivo h3{
        font-size: 24px;
    }
    .icon-cliente{
        width: 34px;
        height: 34px;
    }
    .icon-objetivo{
        width: 34px;
        height: 34px;
    }
    .cliente p{
        font-size: 14px;
    }
    .objetivo p{
        font-size: 14px;
    }
    .cliente p i{
        font-size: 14px;
    }
    .objetivo p i{
        font-size: 14px;
    }
}

/*---------495px--------*/

@media (max-width: 495px){
    .informacoes-do-projeto h2{
        line-height: 1.5;
        margin-top: -10px;
        margin-bottom: -20px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .icon-cliente{
        display: block;
        text-align: center;
        margin-top: 0;
    }
    .icon-objetivo{
        display: block;
        text-align: center;
        margin-top: 0;
    }
    .cliente h3{
        text-align: left;
    }
    .objetivo h3{
        text-align: left;
    }
    .cliente p{
        text-align: left;
    }
    .objetivo p{   
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .informacoes-do-projeto h1{
        font-size: 47px;
    }
    .cliente h3{
        font-size: 22px;
    }
    .objetivo h3{
        font-size: 22px;
    }
    .cliente p{
        margin-top: 20px;
    }
    .objetivo p{
        margin-top: 20px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .informacoes-do-projeto h2{
        font-size: 45px;
        margin-top: -30px;
    }
}

/*---------330px--------*/

@media (max-width: 330px){
    .informacoes-do-projeto h2{
        font-size: 40px;
    }
}

/*-----------------------Responsivo-Imagem-da-Página-Principal-MA----------------------------*/

/*---------1450px--------*/

@media (max-width: 1450px){
    .img-principal-MA-conteudo{
        padding: 10px 14.2%;
        margin-top: 20px;
        margin-bottom: 100px;
    }
}

/*---------1160px--------*/

@media (max-width: 1160px){
    .img-principal-MA-conteudo{
        margin-top: 107px;
    }
}

/*---------1105px--------*/

@media (max-width: 1105px){
    .img-principal-MA-conteudo{
        margin-top: -30px;
    }
}

/*---------1087px--------*/

@media (max-width: 1087px){
    .img-principal-MA-conteudo{
        margin-top: 30px;
    }
}

/*---------1055px--------*/

@media (max-width: 1055px){
    .img-principal-MA-conteudo{
        margin-top: 115px;
    }
}

/*-----------------------Responsivo-Imagem-da-Página-Principal-MA-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .img-principal-MA-conteudo{
        padding: 10px 7%;
        margin-top: 120px;
    }
}

/*---------330px--------*/

@media (max-width: 380px){
    .img-principal-MA-conteudo{
        margin-top: 100px;
    }
}

/*-----------------------Responsivo-Produtos-de-Água----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
        .produtos-de-agua{
            padding: 60px 7%;
        }
        .produtos-de-agua-txt h3{
            font-size: 43px;
        }
        .produtos-de-agua-imagem img{
            object-fit: cover;
            width: auto;
            height: auto;
        }
}

/*---------1200px--------*/

@media (max-width: 1200px){
    .produtos-de-agua-txt{
        margin-top: 80px;
    }
}


/*---------1160px--------*/

@media (max-width: 1160px){
    .produtos-de-agua-txt{
        margin-top: 10%;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .produtos-de-agua-txt h3{
        font-size: 40px;
    }
    .produtos-de-agua-txt p{
        font-size: 16px;
    }
    .produtos-de-agua-txt i{
        font-size: 16px;
    }
}

/*-----------------------Responsivo-Produtos-de-Água-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .produtos-de-agua{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .produtos-de-agua-titulo-responsivo h3{
        display: block;
        padding: 0 0;
        margin-bottom: 30px;
    }
    .produtos-de-agua-txt h3{
        display: none;
    }
    .produtos-de-agua-imagem img{
        object-fit: cover;
        width: 75%;
        height: auto;
        margin-left: 0;
    }
    .produtos-de-agua-txt p{
        margin-top: -45px;
        text-align: center;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .produtos-de-agua-imagem img{
        width: 85%;
    }
    .produtos-de-agua-txt p{
        margin-top: -30px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .produtos-de-agua-titulo-responsivo h3{
        margin-bottom: 20px;
    }
    .produtos-de-agua-titulo-responsivo h3{
        font-size: 45px;
    }
    .produtos-de-agua-txt p{
        margin-top: -20px;
    }
    .produtos-de-agua-txt p{
        font-size: 14px;
    }
    .produtos-de-agua-txt i{
        font-size: 14px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .produtos-de-agua-imagem img{
        width: 90%;
    }
    .produtos-de-agua-txt p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .produtos-de-agua-imagem img{
        width: 100%;
    }
    .produtos-de-agua-titulo-responsivo h3{
        font-size: 43px;
        margin-bottom: -5px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .produtos-de-agua-titulo-responsivo h3{
        font-size: 40px;
        margin-top: 30px;
    }
}

/*-----------------------Responsivo-Produtos-para-Habitação----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .produtos-para-habitacao{
        padding: 60px 7%;
        margin-top: 10px;
    }    
    .produtos-para-habitacao-texto h3{
        font-size: 43px;
    }
    .produtos-para-habitacao-imagem img{
        object-fit: cover;
        width: auto;
        height: auto;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .produtos-para-habitacao-texto h3{
        font-size: 40px;
    }
    .produtos-para-habitacao-texto p{
        font-size: 16px;
    }
    .produtos-para-habitacao-texto i{
        font-size: 16px;
    }
}

/*---------1022px--------*/

@media (max-width: 1022px){
    .produtos-para-habitacao{
        margin-top: -15px;
    }    
}

/*-----------------------Responsivo-Produtos-para-Habitação-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .produtos-para-habitacao{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .produtos-para-habitacao-responsivo h3{
        display: block;
        padding: 0 0;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .produtos-para-habitacao-texto h3{
        display: none;
    }
    .produtos-para-habitacao-imagem img{
        object-fit: cover;
        width: 75%;
        height: auto;
        margin-left: 0;
    }
    .produtos-para-habitacao-texto{
        padding-left: 0;
    }
    .produtos-para-habitacao-texto p{
        text-align: center;
        margin-top: 5px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .produtos-para-habitacao-imagem img{
        width: 85%;
    }
    .produtos-para-habitacao-texto p{
        margin-top: -5px;
    }
    .produtos-para-habitacao-responsivo h3{
        margin-top: 20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .produtos-para-habitacao-responsivo h3{
        font-size: 45px;
        margin-top: 33px;
    }
    .produtos-para-habitacao-texto p{
        font-size: 14px;
    }
    .produtos-para-habitacao-texto i{
        font-size: 14px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .produtos-para-habitacao-imagem img{
        width: 90%;
    }
    .produtos-para-habitacao-texto p{
        text-align: left;
    }
}

/*---------460px--------*/

@media (max-width: 460px){
    .produtos-para-habitacao-responsivo h3{
        font-size: 45px;
        line-height: 3.5rem;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .produtos-para-habitacao-imagem img{
        width: 100%;
    }
    .produtos-para-habitacao-responsivo h3{
        font-size: 43px;
        margin-bottom: -12px;
        margin-top: 40px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .produtos-para-habitacao-responsivo h3{
        font-size: 40px;
        margin-top: 20px;
        margin-bottom: 5px;
    }
}

/*-----------------------Responsivo-Produtos----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .produtos{
        padding: 60px 7%;
        margin-top: 10px;
    }
    .produtos-texto h3{
        font-size: 43px;
    }
    .produtos-imagem img{
        object-fit: cover;
        width: auto;
        height: auto;
    }
}

/*---------1200px--------*/

@media (max-width: 1200px){
    .produtos-texto{
        margin-top: 20px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .produtos-texto h3{
        font-size: 40px;
    }
    .produtos-texto p{
        font-size: 16px;
    }
    .produtos-texto i{
        font-size: 16px;
    }
}

/*---------1022px--------*/

@media (max-width: 1022px){
    .produtos-texto{
        margin-top: -10px;
    }
    .produtos{
        margin-top: -15px;
    } 
}

/*-----------------------Responsivo-Produtos-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .produtos{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .produtos-titulo-responsivo h3{
        display: block;
        padding: 0 0;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .produtos-texto h3{
        display: none;
    }
    .produtos-imagem img{
        object-fit: cover;
        width: 75%;
        height: auto;
        margin-left: 0
    }
    .produtos-texto p{
        text-align: center;
        margin-top: 40px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .produtos-imagem img{
        width: 85%;
    }
    .produtos-texto p{
        margin-top: 30px;
    }
    .produtos-titulo-responsivo h3{
        margin-top: 20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .produtos-titulo-responsivo h3{
        font-size: 45px;
        margin-top: 30px;
    }
    .produtos-texto p{
        font-size: 14px;
    }
    .produtos-texto i{
        font-size: 14px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .produtos-imagem img{
        width: 90%;
    }
    .produtos-texto p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .produtos-imagem img{
        width: 100%;
    }
    .produtos-titulo-responsivo h3{
        font-size: 43px;
        margin-bottom: 5px;
        margin-top: 40px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .produtos-titulo-responsivo h3{
        font-size: 40px;
        margin-top: 20px;
    }
}

/*-----------------------Responsivo-Notícias----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .noticias{
        padding: 60px 7%;
        margin-top: 10px;
    } 
    .noticias-texto h3{
        font-size: 43px;
    }
    .noticias-imagem img{
        object-fit: cover;
        width: auto;
        height: auto;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .noticias-texto h3{
        font-size: 40px;
    }
    .noticias-texto P{
        font-size: 16px;
    }
}

/*---------1033px--------*/

@media (max-width: 1033px){
    .noticias{
        margin-top: -15px;
    }
}

/*---------1022px--------*/

@media (max-width: 1022px){
    .noticias{
        margin-top: 0;
    }
}

/*-----------------------Responsivo-Notícias-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .noticias{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .noticias-titulo-responsivo h3{
        display: block;
        padding: 0 0;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    .noticias-texto h3{
        display: none;
    }
    .noticias-imagem img{
        object-fit: cover;
        width: 75%;
        height: auto;
        margin-left: 0;
    }
    .noticias-texto{
        padding-left: 0;
    }
    .noticias-texto p{
        text-align: center;
        margin-top: 5px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .noticias-imagem img{
        width: 85%;
    }
    .noticias-texto p{
        margin-top: -5px;
    }
    .noticias-titulo-responsivo h3{
        margin-top: 20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .noticias-titulo-responsivo h3{
        font-size: 45px;
        margin-top: 30px;
    }
    .noticias-texto p{
        font-size: 14px;
    }
}
/*---------500px--------*/

@media (max-width: 500px){
    .noticias-imagem img{
        width: 90%;
    }
    .noticias-texto p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .noticias-imagem img{
        width: 100%;
    }
    .noticias-titulo-responsivo h3{
        font-size: 43px;
        margin-bottom: -10px;
        margin-top: 40px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .noticias-titulo-responsivo h3{
        font-size: 40px;
        margin-top: 20px;
    }
}

/*-----------------------Responsivo-Recrutamento----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .recrutamento{
        padding: 60px 7%;
        margin-top: 10px;
    }
    .recrutamento-texto h3{
        font-size: 43px;
    }
    .recrutamento-imagem img{
        object-fit: cover;
        width: auto;
        height: auto;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .recrutamento-texto h3{
        font-size: 40px;
    }
    .recrutamento-texto p{
        font-size: 16px;
    }
    .recrutamento-texto{
        margin-top: 80px;
    }
}

/*---------1033px--------*/

@media (max-width: 1033px){
    .recrutamento-texto{
        margin-top: 70px;
    }
}

/*-----------------------Responsivo-Recrutamento-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .recrutamento{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .recrutamento-titulo-responsivo h3{
        display: block;
        padding: 0 0;
        margin-bottom: -5px;
        margin-top: 10px;
    }
    .recrutamento-texto h3{
        display: none;
    }
    .recrutamento-imagem img{
        object-fit: cover;
        width: 75%;
        height: auto;
        margin-left: 0
    }
    .recrutamento-texto p{
        text-align: center;
        margin-top: -40px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .recrutamento-imagem img{
        width: 85%;
    }
    .recrutamento-texto p{
        margin-top: -45px;
    }
    .recrutamento-titulo-responsivo h3{
        margin-top: 20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .recrutamento-titulo-responsivo h3{
        font-size: 45px;
        margin-top: 30px;
    }
    .recrutamento-texto p{
        font-size: 14px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .recrutamento-imagem img{
        width: 90%;
    }
    .recrutamento-texto p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .recrutamento-imagem img{
        width: 100%;
    }
    .recrutamento-titulo-responsivo h3{
        font-size: 43px;
        margin-bottom: 5px;
        margin-top: 40px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .recrutamento-titulo-responsivo h3{
        font-size: 40px;
        margin-top: 20px;
        margin-bottom: -18px;
    }
}

/*-----------------------Responsivo-Contacto----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .contacto-MA{
        padding: 60px 7%;
        margin-top: 10px;
    } 
    .contacto-MA-texto h3{
        font-size: 43px;
    }
    .contacto-MA-imagem img{
        object-fit: cover;
        width: auto;
        height: auto;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .contacto-MA-texto h3{
        font-size: 40px;
    }
    .contacto-MA-texto P{
        font-size: 16px;
    }
}

/*-----------------------Responsivo-Contacto-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .contacto-MA{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .contacto-MA-titulo-responsivo h3{
        display: block;
        padding: 0 0;
        margin-bottom: -5px;
        margin-top: 10px;
    }
    .contacto-MA-texto h3{
        display: none;
    }
    .contacto-MA-imagem img{
        object-fit: cover;
        width: 75%;
        height: auto;
        margin-left: 0;
    }
    .contacto-MA-texto{
        padding-left: 0;
    }
    .contacto-MA-texto p{
        text-align: center;
        margin-top: 0;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .contacto-MA-imagem img{
        width: 85%;
    }
    .contacto-MA-texto p{
        margin-top: -5px;
    }
    .contacto-MA-titulo-responsivo h3{
        margin-top: 20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .contacto-MA-titulo-responsivo h3{
        font-size: 45px;
        margin-top: 30px;
    }
    .contacto-MA-texto p{
        font-size: 14px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .contacto-MA-imagem img{
        width: 90%;
    }
    .contacto-MA-texto p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .contacto-MA-imagem img{
        width: 100%;
    }
    .contacto-MA-titulo-responsivo h3{
        font-size: 43px;
        margin-bottom: -10px;
        margin-top: 40px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .contacto-MA-titulo-responsivo h3{
        font-size: 40px;
        margin-top: 20px;
    }
}

/*-----------------------Responsivo-Resultado----------------------------*/

/*---------1450px--------*/

@media (max-width: 1450px){
    .resultado-final{
        padding: 70px 1%;
        margin-top: 40px;
        margin-bottom: 80px;
        padding: 45px 45px 45px 45px;
    }
}

/*---------1425px--------*/

@media (max-width: 1425px){
    .resultado-final{
        margin-top: 80px;
    }
}

/*---------1160px--------*/

@media (max-width: 1160px){
    .resultado-final{
        margin-top: 90px;
        margin-bottom: 105px;
        padding: 20px 20px 20px 20px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .resultado h3{
        font-size: 28px;
    }
    .resultado p{
        font-size: 16px;
    }
    .resultado p i{
        font-size: 16px;
    }
    .resultado p a i{
        font-size: 16px;
    }
    .icon-resultado{
        width: 38px;
        height: 38px;
    }
}

/*-----------------------Responsivo-Resultado-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .resultado-final{
        padding: 40px 7%;
        margin-top: 8px;
        margin-bottom: 80px;
    }
    .resultado p{
        margin-left: 5px;
        margin-right: 5px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .resultado h3{
        font-size: 26px;
    }
    .icon-resultado{
        width: 36px;
        height: 36px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .resultado-final{
        margin-top: 10px;
        margin-bottom: 90px;
    }
    .resultado h3{
        font-size: 24px;
    }
    .icon-resultado{
        width: 34px;
        height: 34px;
    }
    .resultado p{
        font-size: 14px;
    }
    .resultado p i{
        font-size: 14px;
    }
    .resultado p a i{
        font-size: 14px;
    }
    .link-voltar-portfolio{
        font-size: 1rem;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .resultado-final{
        margin-top: 15px;
        margin-bottom: 85px;
    }
    .icon-resultado{
        display: block;
        text-align: center;
        margin-top: 0;
    }
    .resultado h3{
        text-align: left;
    }
    .resultado p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .resultado h3{
        font-size: 22px;
    }
    .resultado p{
        margin-top: 20px;
    }
    .link-voltar-portfolio{
        font-size: 0.9rem;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .resultado-final{
        margin-top: -5px;
        margin-bottom: 63px;
    }
}

/*-----------------------Responsivo-Scroll-Up-Telemóvel----------------------------*/

/*---------570px--------*/

@media (max-width: 570px){
    .scroll-up-btn{
        width: 31px;
        height: 31px;
        font-size: 19.5px;
        text-align: center;
        line-height: 35px;
    }
}