.footer {
    font-family: Arial, sans-serif;
    background-color: #f5f2f0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-main {
    padding: 40px 0;
    background-color: #ffffff;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .footer-logo img {
    max-width: 100%;
    height: auto;
  }
  
  .footer-nav {
    display: flex;
    gap: 60px;
  }
 
  .footer-nav-section h4 {
    font-size: 16px;
   
    margin-bottom: 16px;
    letter-spacing: 3px;
    color: #11142D !important;
    font-weight: 800;
    text-transform: uppercase;
    
  }
  
  .footer-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  

  
  .footer-nav-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
  }
  
  .footer-nav-section ul li a:hover {
    color: #333;
  }
  
  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    color: #8b7e74;
    font-size: 24px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #333;
  }
  
  .contact-button {
    display: inline-block;
    background-color: #b5e2c2;
    color: #333;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .contact-button:hover {
    background-color: #9ad8b0;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #e0dbd7;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-credits a {
    color: #666;
    text-decoration: none;
  }
  
  .footer-languages {
    display: flex;
    gap: 10px;
  }
  
  .lang-flag img {
    width: 24px;
    height: auto;
    border-radius: 2px;
  }
  
  .footer-copyright {
    color: #666;
    font-size: 14px;
  }
  
  /* Botón de volver arriba */
  .scroll-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f5d547;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
  }
  
  .scroll-top-button:hover {
    background-color: #f3ca2f;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 30px;
      align-items: center;
      text-align: center;
    }
    
    .footer-nav {
      flex-direction: column;
      gap: 30px;
    }
    
    .footer-social {
      align-items: center;
    }
    
    .footer-bottom-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }