/* Estilos para páginas legales */
/*:root {*/
/*  --kaninos-primary: #00000;*/
/*  --kaninos-secondary: #00000;*/
/*  --kaninos-dark: #333333;*/
/*  --kaninos-light: #F5F5F5;*/
/*  --kaninos-accent: #8C5E58;*/
/*  --text-color: #333333;*/
/*  --light-gray: #f8f8f8;*/
/*  --border-color: #e0e0e0;*/
/*}*/

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #0000;
}

.legal-content {
  padding: 3rem 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.legal-header h1 {
  font-size: 2.5rem;
  color: #FF4942;
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.legal-body {
  font-size: 1rem;
}

.legal-body section {
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-size: 1.5rem;
  color: #FF4942;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.legal-body h3 {
  font-size: 1.2rem;
  color: #00000;
  margin: 1.5rem 0 0.8rem;
}

.legal-body p, .legal-body ul, .legal-body ol {
  margin-bottom: 1rem;
}

.legal-body ul, .legal-body ol {
  padding-left: 1.5rem;
}

.legal-body li {
  margin-bottom: 0.5rem;
}

.legal-body a {
  color: #00000;
  text-decoration: none;
  border-bottom: 1px dotted #00000;
  transition: all 0.2s ease;
}

.legal-body a:hover {
  color: #00000;
  border-bottom-color: #00000;
}

.legal-body strong {
  font-weight: 700;
  color: #333333;
}

.legal-body address {
  font-style: normal;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f8f8f8;
  border-radius: 6px;
  border-left: 3px solid #00000;
}

/* Tabla de contenidos flotante (opcional) */
.table-of-contents {
  position: sticky;
  top: 2rem;
  background-color: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-of-contents h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #00000;
}

.table-of-contents ul {
  list-style-type: none;
  padding-left: 0;
}

.table-of-contents li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.table-of-contents a {
  text-decoration: none;
  color: #333333;
  transition: all 0.2s ease;
}

.table-of-contents a:hover {
  color: #00000;
  padding-left: 3px;
}

/* Estilos para impresión */
@media print {
  body {
    font-size: 12pt;
    color: #000;
    background-color: #fff;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .legal-header {
    text-align: left;
  }
  
  .legal-body h2 {
    page-break-after: avoid;
  }
  
  .legal-body h3 {
    page-break-after: avoid;
  }
  
  .legal-body p, .legal-body ul, .legal-body ol {
    page-break-inside: avoid;
  }
  
  .table-of-contents {
    display: none;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 2rem;
  }
  
  .legal-body h2 {
    font-size: 1.3rem;
  }
  
  .legal-body h3 {
    font-size: 1.1rem;
  }
  
  .table-of-contents {
    position: static;
    margin-bottom: 2rem;
  }
}

/* Estilos para destacar secciones importantes */
.important-notice {
  background-color: rgba(249, 160, 63, 0.1);
  border-left: 4px solid #00000;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}

.important-notice h4 {
  color: #00000;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Animación suave para los enlaces de anclaje */
html {
  scroll-behavior: smooth;
}

/* Estilo para las definiciones */
dl {
  margin-bottom: 1.5rem;
}

dt {
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.3rem;
}

dd {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Estilo para tablas (si necesitas incluir alguna) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th {
  background-color: #f8f8f8;
  text-align: left;
  padding: 0.8rem;
  border-bottom: 2px solid #e0e0e0;
  color: #00000;
}

td {
  padding: 0.8rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}


/*FOOTER*/



/* Estilos generales del footer */
.kaninos-footer {
  background-color: #2A2A2A;
  color: #E0E0E0;
  font-family: 'Nunito', sans-serif;
  padding: 0;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

/* Sección de marca */
.footer-brand {
  flex: 1 1 300px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #E0E0E0;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #E0E0E0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #FF4942;
  color: #2A2A2A;
  transform: translateY(-3px);
}

/* Enlaces del footer */
.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h3 {
  color: #FF4942;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #FF4942;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.7rem;
}

.footer-column a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-column a i {
  margin-right: 8px;
}

.footer-column a:hover {
  color: #FF4942;
  padding-left: 5px;
}

/* Newsletter */
.footer-newsletter {
  flex: 1 1 300px;
}

.footer-newsletter h3 {
  color: #FF4942;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-form input {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #E0E0E0;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background-color: #FF4942;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e08c2a;
  transform: translateY(-2px);
}

/* Barra inferior */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
}

.footer-bottom .footer-container {
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #FF4942;
}

.payment-methods {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.payment-methods img {
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.payment-methods img:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}