@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&display=swap');

footer {
    background-color: white;
    padding: 40px 60px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e0e0e0;
  }
   
  .logo-footer {
    width: 180px;
     height: auto;
     margin: 0; 
      }
      
    .footer-description {
      font-size: 13px;
      color: #888;
      line-height: 1.4;
      max-width: 220px;
      margin: 0;
      }

      
  .footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    
  }
  
  .footer-description {
    font-size: 13px; 
    color: #888;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }
 
  .newsletter-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .newsletter-form input[type="email"] {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    flex: 1;
  }
  
  .newsletter-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #45a045;
  }
  
  .contacto h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .contact-info {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .social-icons a img {
    width: 20px;
    margin-right: 10px;
    transition: transform 0.2s ease;
  }
  
  .social-icons a img:hover {
    transform: scale(1.1);
  }
  .social-icons a {
    text-decoration: none;
    display: inline-block; 
  }
  
