/* ============================================
   COOKIES - SOLVEX GROUP
   Estilos específicos de la página de cookies
   ============================================ */

/* 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;
}

.legal-content a {
  color: #1a1a1a;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-blue);
}

.updated-info {
  background: #f5f5f5;
  padding: 0.5rem;
  margin: 0 0 1rem 0;
  font-size: 10px;
  color: #666;
  text-align: center;
  border: 1px solid #ddd;
}

/* 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%;
  }
}

/* Los estilos del banner de cookies están unificados en estilos.css */
