/* Footer Geral */
.footer {
    background-color: #f9f9f9;
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  /* Logo e Newsletter */
  .footer-logo {
    flex: 1 1 30%;
    text-align: left;
  }
  
  .footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
  }
  
  .footer-logo p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .newsletter {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilização do Input */
.newsletter input {
    flex: 1;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.newsletter input::placeholder {
    color: #bbb;
}

/* Estilização do Botão */
.newsletter button {
    background-color: #4d4d4d;
    color: white;
    border: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    transition: background-color 0.3s;
}

.newsletter button i {
    font-size: 1rem;
}

/* Hover do Botão */
.newsletter button:hover {
    background-color: #333;
}

/* Estilo Responsivo */
@media (max-width: 768px) {
    .newsletter {
        max-width: 100%;
    }

    .newsletter button {
        width: 35px;
        height: 35px;
    }
}
  
  /* Links */
  .footer-links {
    flex: 1 1 60%;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-links div h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-links div ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links div ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links div ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
  }
  
  .footer-links div ul li a:hover {
    color: #239b39;
  }
  
  /* Bottom Section */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
  }
  
  .footer-bottom a {
    color: #333;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    color: #239b39;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .newsletter input {
      width: 70%;
    }
  
    .newsletter button {
      padding: 0.4rem 0.8rem;
    }
  }
  