@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@1,500&display=swap');


:root{
    --azul_claro: #00AEF1ff;
    --azul_claro2: #6F92A3ff;
    --azul_escuro: #03456Bff;
    --azul_escuro2: #064563ff;

    --fonte_padrao: 'Montserrat'
}

*{
  margin: 0;
  padding: 0;
}

html{
    scroll-behavior: smooth;
}

/* Estilos para o cabeçalho */
header {
    margin-bottom: 20px;
    background-color: white;
    box-shadow: -7px 7px 20px rgba(0, 0, 0, 0.624); 
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 999;
}

/* Estilos para a logo */
.logo img {
    width: 80px;
    height: 80px;
    border-radius: 70%;
}

/* Estilos para o menu */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 10px;
}

nav ul li a { 
    color: var(--azul_escuro);
    text-decoration: none;
    font-family: var(--fonte_padrao);
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
}

nav ul li a:hover {
    border-bottom: 2px solid transparent;
    transition: 0.95s ease-in-out;
}

.menu-icon {
    display: none;
}

section{
  font-family: var(--fonte3);
  padding-bottom: 3vh;
  padding-left: 30px;
  font-size: 2vw;
  text-align: center;
  
}

b{
    color: var(--azul_escuro);
    text-decoration: underline;
}

section.normal{
    padding: 5%;
    color: rgba(0, 0, 0, 0.779);
  
}

section.normal button{
    padding: 20px;
    border-radius: 20px;
    border: none;
    background-color: #25A516ff;
    margin-top: 20px;
    cursor: pointer;

}

section.normal p{
    color: black;
}

section#sobre p{

    padding-top: 50px;
}

section.normal button a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    width: 50px;
}

section.normal button:hover{
    background-color: rgb(23, 125, 11);
}

section.normal img{
    
    width: 60px;
    align-items: start;
}

section.normal button p {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

section.imagem{ 
  color: white;
  box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.859);
  background-size: cover;
  background-attachment: fixed;
}

section.imagem > p{
  background-color: rgba(0, 0, 0, 0.514);
  background-position: center center;
  display: inline-block;
  padding: 20px;
  text-shadow: 1.5px 1.5px 0px black;
  border-radius: 10px;
}

section#img01{
    height: 70vh;
  background-image: url(imagens/piscina1.jpg);
  background-position: center;
}

section#img02{
    height: 70vh;
  background-image: url(imagens/limpando_piscina.jpg);
  background-position: center;
  
}

section#img03{
    height: 70vh;
  background-image: url(imagens/produtos.jpg);
  background-position: center
  
}




footer{
    background-color: black;
    text-align: center;
    padding-bottom: 2%;
    font-size: 25px;
    color: white;
}

footer img{
    position: relative;
    left: 45%;
    top: 50px;
    width: 60px;    
}
  




/* Estilos para o menu em resoluções menores */
@media screen and (max-width: 700px) {
   


    nav ul {
        display: none;
    }

    section.normal p{
        font-size: 25px;
    }

    section.normal {
        padding: 2em;
    }

    section#sobre p{
        padding-top: 3.5em;
    }

    .menu-icon {
        color: var(--azul_escuro);
        display: block;
        font-size: 24px;
        cursor: pointer;
        margin-right: 20px;
    }

    /* Estilos para o menu responsivo em resoluções menores */
    .responsive-menu {
        position: absolute;
        margin: 15px;
        top: 45px;
        right: 10px;
        background-color: var(--branco);
        color: white;
        padding: 10px;
        width: 150px;
        display: none;
        
    }

    .responsive-menu ul {
        border-radius: 5px;
        font-weight: bold;
        background-color: var(--azul_escuro);
        list-style-type: none;
        padding-bottom: 30px;
        padding-top: 30px;
        text-align: center;

    }

    .responsive-menu ul li a{
        text-decoration: none;
        margin-top: 5px;
        margin-bottom: 10px;
        color: white;
        font-size: 2.8vh;
    }


    .responsive-menu ul li a:hover{
        color: rgba(128, 128, 128, 0.493);
    }

    .responsive-menu ul li{
        padding-bottom: 10px;
    }

    footer p{
        padding-bottom: 2%;
        font-size: 25px;
    }

    footer img{
        width: 50px;
        margin-right: 20px;
    }
}

/* Estilos para telas maiores (PC) */
@media screen and (min-width: 701px) {
    .responsive-menu {
        display: none !important;
    }
}

