/* ============================================
   AVISO LEGAL - SOLVEX GROUP
   Estilos específicos de la página de aviso legal
   ============================================ */

/* LEGAL PAGE STYLING - Traditional difficult-to-read format */
.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--white);
  color: #2a2a2a;
}

.legal-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-content {
  font-size: 12px;
  line-height: 1.35;
  text-align: justify;
  color: #333;
}

.legal-content h2 {
  font-size: 12.5px;
  font-weight: normal;
  color: #1a1a1a;
  margin: 1.2rem 0 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.legal-content p {
  margin: 0 0 0.6rem 0;
  text-indent: 0;
}

.legal-content ul {
  margin: 0.3rem 0 0.6rem 1rem;
  padding: 0;
}

.legal-content li {
  margin: 0 0 0.3rem 0;
  list-style-type: disc;
}

.legal-content strong {
  font-weight: normal;
  color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  nav ul.active {
    transform: translateX(0);
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  

  .legal-container {
    padding: 1rem;
  }
  
  .legal-content {
    font-size: 10px;
    line-height: 1.3;
  }
  
  .legal-content h2 {
    font-size: 11px;
  }
  
  .legal-title {
    font-size: 12px;
  }
  
  .footer-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .footer-block {
    min-width: 100%;
  }
}

/* COOKIES */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

#cookie-banner button {
  background: var(--accent-green);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-left: 0.5rem;
  transition: var(--transition);
}

#cookie-banner button:hover {
  background: #00a076;
}

#reject-cookies {
  background: transparent !important;
  border: 1px solid var(--white) !important;
}

#reject-cookies:hover {
  background: var(--white) !important;
  color: var(--primary-dark) !important;
}

#cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: 1000;
}

#cookie-settings-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}