
/* Estilo principal del footer */
.footer {
    background-color: #333; /* Fondo oscuro */
    color: #fff; /* Texto claro */
    padding: 10px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 1rem;
  }
  
  /* Contenedor principal */
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los bloques */
    align-items: center;
    gap: 20px; /* Espacio entre bloques */
    margin-bottom: 20px;
  }
  
  /* Sección de enlaces legales y contacto */
  .footer-links, .footer-contact {
    text-align: center;
    flex: 1 1; /* Ajuste para que sean flexibles */
    max-width: 300px;
  }
  
  .footer-links h4, .footer-contact h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li, .footer-contact li {
    margin-bottom: 10px;
  }
  
  .footer-links a, .footer-contact a {
    color: #fff; /* Blanco */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover, .footer-contact a:hover {
    color: var(--color-only-fans);
  }
  
  /* Línea inferior del footer */
  .footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 1rem;
    color: #aaa;
  }
  
  /* Responsividad */
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
  
    .footer-links, .footer-contact {
        text-align: center;
    }

    .footer-contact {
      height: 100px;;
    }
  }
  