/* 
 * Kinetum - Política de Privacidad
 * Estilos para la página de política de privacidad
 */

/* Reset básico */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables de color */
:root {
  --primary-color: #1F6A70;
  --primary-dark: #15555a;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-section: #ffffff;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --highlight-bg: #e0f2f4;
  --spacing-unit: 1.5rem;
}

/* Tipografía base */
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Contenedor principal */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.policy-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kinetum-logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.policy-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.policy-update {
  font-size: 1.6rem;
  opacity: 0.9;
  font-weight: 400;
}

@media (max-width: 768px) {
  .policy-header {
    padding: 4rem 0 3rem;
  }
  
  .kinetum-logo {
    max-width: 150px;
  }
  
  .policy-title {
    font-size: 2.5rem;
  }
  
  .policy-update {
    font-size: 1.4rem;
  }
}

/* Main Content */
.policy-content {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

/* Secciones de política */
.policy-section {
  background-color: var(--bg-section);
  border-radius: 12px;
  padding: 3.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  display: flex;
  gap: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.section-content {
  flex: 1;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.section-text {
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-text:last-child {
  margin-bottom: 0;
}

.section-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.section-text.highlight {
  background-color: var(--highlight-bg);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  margin-top: 1.5rem;
  font-weight: 500;
}

.section-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.section-list li {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-dark);
}

.section-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.section-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 2rem 0;
  }
  
  .policy-section {
    padding: 2.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-number {
    font-size: 3rem;
    min-width: auto;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-text {
    font-size: 1.5rem;
  }
  
  .section-list li {
    font-size: 1.5rem;
    padding-left: 2rem;
  }
  
  .section-text.highlight {
    padding: 1.2rem 1.5rem;
  }
}

/* Footer */
.policy-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer-text {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-link {
  font-size: 1.4rem;
  opacity: 0.7;
}

.footer-link a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-footer {
    padding: 2rem 0;
  }
  
  .footer-text {
    font-size: 1.3rem;
  }
  
  .footer-link {
    font-size: 1.2rem;
  }
}

/* Animaciones suaves */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-section {
  animation: fadeIn 0.6s ease-out;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }

/* Mejoras de accesibilidad */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print styles */
@media print {
  .policy-header {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    box-shadow: none;
  }
  
  .policy-section {
    box-shadow: none;
    border: 1px solid var(--border-color);
    page-break-inside: avoid;
  }
  
  .policy-footer {
    background: var(--white) !important;
    color: var(--text-dark) !important;
  }
  
  .policy-content {
    padding: 1rem 0;
  }
}

