/* ========================
   FOOTER GLASS STYLE - GOMU
   ======================== */

   .site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 40px 40px;
    margin-top: auto;
    flex-shrink: 0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .footer-section h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  
  /* Logo */
  .footer-logo {
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: 28px;
    filter: brightness(1.1);
  }
  
  /* Enlaces */
  .footer-section a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 300;
  }
  
  .footer-section a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Listas con iconos glass */
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  /* Iconos con efecto glass */
  .footer-section ul li i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 12px;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .footer-section ul li:hover i {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }
  
  /* Info de contacto con iconos glass */
  .footer-contact-info p {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .footer-contact-info p i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: #fff;
    margin-top: 2px;
  }
  
  /* Redes sociales con efecto glass */
  .social-links {
    margin-top: 28px;
    display: flex;
    gap: 16px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
  
  /* Footer bottom */
  .footer-bottom {
    text-align: center;
    padding: 35px 0 0;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom-content p {
    margin: 0;
  }
  
  .footer-bottom-content a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 12px;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-content a:hover {
    color: #fff;
  }
  
  .payment-methods {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* ========================
     RESPONSIVE - MÓVIL
     ======================== */
  
  @media (max-width: 768px) {
    .site-footer {
      padding: 50px 24px 32px;
    }
  
    .footer-container {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
  
    .footer-logo {
      margin: 0 auto 24px;
      display: block;
    }
  
    .footer-logo-social {
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
      margin-top: 24px;
    }
  
    .footer-section h3 {
      font-size: 14px;
      margin-bottom: 20px;
    }
  
    .footer-section ul li {
      margin-bottom: 12px;
    }
  
    .footer-contact-info p {
      font-size: 13px;
      margin-bottom: 14px;
    }
  
    .footer-bottom {
      padding: 32px 0 0;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  
    .footer-bottom-content a {
      margin: 0 8px;
    }
  
    .payment-methods {
      justify-content: center;
    }
  }
  
  /* ========================
     RESPONSIVE - TABLET
     ======================== */
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
      gap: 50px;
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-logo-social {
      grid-column: 1 / -1;
      text-align: center;
    }
  
    .footer-logo {
      margin: 0 auto 24px;
    }
  
    .social-links {
      justify-content: center;
    }
  }