
main{
  overflow-x: hidden;
}


.carousel-container {
    
    width: 100%;
    
    
  
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
}
.carousel-item {
    min-width: 200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-item img {
    width: 100%;
    max-width: 150px;
    object-fit: contain;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}




/* POPUP NEGOCIOS */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
  z-index: 2;
  }

  /* Estilo do popup */
 

  .popup-content h2 {
    margin-top: 0;
  }

  .popup-content p {
 color: #22bf66;
 
  }

  /* Botão de fechar */
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
  }

  .popup-close:hover {
    color: #22bf66;
  }

  /* Tornar o popup visível */
  .popup-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  /* Botão de abrir */
  .open-popup-btn {
    padding: 10px 15px;
  
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }


 span{
  color: #22bf66;
}

  /* CSS DA CALC  */
  .open-popup-btn img{
    width: 110%;
  }
 
  #resultado{
    margin-top: 10px;
  }
  .container-n label {
    display: block;
    margin: 10px 0 5px;
}

.container-n  input {
    margin-bottom: 15px;
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.container-n  button {
    padding: 10px 35px;
    background-color: var(--color-primary-4);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  
}



.container-n p {
   
    font-weight: bold;

}

.container-n {
 
    display: flex;

    justify-content: center;
    
}

 img {

    width: 80%;
    
 
}


h2{
    text-align: center;


 color: var(--color-primary-4);
}
.calc{
    display: flex;
    justify-content: center;
    width: 45%;
    flex-direction: column;
    margin-right: 30px;
   margin-right: 60px;
}

@media screen and (max-width: 1170px) {
    .container-n {
    flex-direction: column;
    }

    .popup-content {
      width: 100%;
      height: 45%;
      margin: 15px;
    }
    .open-popup-btn img{
        width: 100%;
        padding: 0;
        margin: 0;
      }
    .container-n img{
        width: 40%;
        padding: 0;
        margin: 0;
      }
    .calc{
        display: flex;
        justify-content: center;
        width: 100%;
        flex-direction: column;
        margin-right: 0px;
      
    }
    .container-n label {
        display: block;
        margin: 10px 0 5px;
    }
    
    .container-n  input {
        margin-bottom: 15px;
        padding: 10px;
       width: 350px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
     
    
}
.side-menu {
  width: 0;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #22bf66;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px; /* Ajusta para acomodar o cabeçalho */
  z-index: 1000;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex-direction: column;
 border-top-right-radius: 8px;
 border-bottom-right-radius: 8px;
}

.side-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.side-menu .close-btn:hover {
  color: #ddd;
}

.side-menu .team-member {
  padding: 10px;
  color: white;
  border-bottom: 1px solid #777;
}

.team-member img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.team-member .name {
  font-size: 16px;
  font-weight: 600;
}

.team-member .role {
  font-size: 14px;
  color: #000000;
}

.open-menu-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 20px 0;
}

.open-menu-btn:hover {
  background-color: #0056b3;
}
#openMenuBtn{
display: flex;
gap: 2px;
align-items: center;
background-color: #ffffff;
padding: 8px 14px;
font-weight: 500;
box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
border-radius: 12px;
border: none;
cursor: pointer;}