@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

a {
  color: #000;
  text-decoration: none;    
  font-weight: bold;
}

a:hover {
    color: #165a5e;
}

.nav-footer a {
    color: #fff;
    text-decoration: none;    
    
  }
  
.nav-footer a:hover {
      color: #ccc;
  }

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 7vw;
}

.logo {
    height: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    margin-left: 180px;
    margin-top: 16px;
    
}

.nav-footer {
    margin-top: 10px;
    list-style: none;
    line-height: 36px;    
}

.nav-footer li {
    border-bottom: 1px #ccc solid;
}

.nav-list li {
    margin-left: 38px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background-color: #000;
    margin: 8px;
    transition: 0.3s;
}

.img-inicio {
    background: url("imagens/carousel-2.png") no-repeat center center;
    background-size: cover;
    height: 600px;
}

.botao {
    font-weight: bold;
    color: #fff;
    padding: 16px 10px;
    background-color: tomato;
    width: 280px;
    text-align: center;
    border-radius: 40px;
    top: 50%;
    left: 56%;
    transform: translateX(-50%);
    position: absolute;

}

.botao a {
    color: #fff;
}

.box-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 80px auto;
}

.box-card {
    width: 300px;
    margin: 30px;
    text-align: center;
}

.sect1 {
    background: url("imagens/img-section-1.jpg") no-repeat center center;  
    background-size: cover;
    height: 440px;
    margin: 80px 0;
    padding: 60px;
    font-size: 20px;
    line-height: 24px;
}

.sect2 {
    text-align: center;
    margin: 80px 0;    
}

.texto {
    width: 80vw;
    padding: 20px;
    font-size: 18px;
    line-height: 24px;
    margin: 60px auto;

}

.col-sect1 {
    width: 40vw;
    background-color: #fff;    
    padding: 32px;
    color: #000;
    opacity: 0.7;
}

footer {
  background-color: #165a5e;
  height: 280px;
  display: flex;
  justify-content: center;
  clear: both;
  color: #fff;
}

footer h6 {
    font-size: 22px;
    padding: 20px 0;
    border-bottom: white 2px solid;
}

.col-footer {
    width: 320px;
    line-height: 18px;
    margin: auto 20px;
}

.col-footer img {
    margin: 10px 0;
}


.col-footer a {
    color: white;
    font-weight: normal;
}

.col-footer a:hover {
    color: #ccc;
}


@media (max-width: 999px) {
    body {
        overflow-x: hidden;
    }
    .nav-list {
        position: absolute;
        margin-top: 0;
        top: 7vw;
        right: 0;
        width: 50vw;
        color: #000;
        height: 93vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        z-index: 10;
    }
    .nav-list li {
        margin-left: 0;
        opacity: 0;
    }
    .mobile-menu {
        display: block;
    }}

    .nav-list.active {
        transform: translateX(0);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .mobile-menu.active .line2 {
        opacity: 0;
    }

    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -7px);
    }

    .fadeDiv {
        animation: fadeIn 1.2s both;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(100px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .titulo-contato {
        color: #165a5e;
        margin: 40px;
      }
      
      .social-divider {
        border-top: 1px solid #ccc;
        width: 50%;
        margin: 12px 0;
      }

      .redes-sociais {
        margin-top: 40px;
      }

      .redes-sociais a {
        color: #000;
        text-decoration: none;
        padding: 4px;
      }
      .redes-sociais i {
        width: 30px;
      }

      .titulo-secao {
        color: #165a5e;
        font-size: 30px;
        font-weight: bold;
        margin-top: 50px;
        margin-bottom: 50px;
        text-align: center;
      }

      .produto {
        margin-bottom: 50px;
      }

      .imagem-produto {
        background-size: cover;
        background-position: center;
        height: 200px;
        border-radius: 8px;
        position: relative;
      }
  
      .imagem-overlay {
        background-color: rgba(22, 90, 94, 0.8);
        color: #fff;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        padding: 0 10px;
      }
  
      .descricao-produto {
        font-size: 16px;
        margin-bottom: 10px;
      }
  
      .topicos-produto {
        padding-left: 20px;
        list-style: none;
      }
  
      .topicos-produto li::before {
        content: "✔";
        color: #165a5e;
        font-weight: bold;
        margin-right: 8px;
      }

      .linha-separadora {
        border-top: 1px solid #ccc;
        margin: 40px 0;
      }

      .linha-topo {
        height: 5px;
        background-color: #165a5e;
        width: 100%;
      }

      .texto-sobre {
        font-size: 17px;
        line-height: 1.7;
        text-align: justify;
        margin-bottom: 30px;
      }
  