/* ======================
   ESTILOS GLOBALES - 200 MILLAS LOJA
   ====================== */

/* 1. Variables de Color y Breakpoints */
:root {
  /* Colores Principales */
  --color-primario: #1a5f7a;     /* Azul marino */
  --color-secundario: #ff7f50;   /* Coral/Naranja */
  --color-acento: #25d366;       /* Verde WhatsApp */
  
  /* Escala de Grises */
  --color-texto: #333333;
  --color-texto-claro: #666666;
  --color-borde: #e0e0e0;
  --color-fondo: #ffffff;
  --color-fondo-secundario: #f8f9fa;
  
  /* Sombras */
  --sombra-suave: 0 2px 15px rgba(0, 0, 0, 0.1);
  --sombra-media: 0 4px 20px rgba(0, 0, 0, 0.15);
  
  /* Transiciones */
  --transicion-rapida: all 0.2s ease;
  --transicion-estandar: all 0.3s ease;
  --transicion-lenta: all 0.5s ease;
  
  /* Breakpoints */
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  
  /* Espaciados */
  --espaciado-xs: 0.5rem;
  --espaciado-sm: 1rem;
  --espaciado-md: 1.5rem;
  --espaciado-lg: 2rem;
  --espaciado-xl: 3rem;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  /* Tamaños de fuente base */
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.125rem;  /* 18px */
  --font-size-lg: 1.25rem;   /* 20px */
  --font-size-xl: 1.5rem;    /* 24px */
  --font-size-xxl: 2rem;     /* 32px */
  
  /* Alturas de línea */
  --line-height-sm: 1.2;
  --line-height-base: 1.5;
  --line-height-lg: 1.7;
}

/* 2. Reset y Estilos Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 3. Configuración de HTML y Body */
html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-texto);
  background-color: var(--color-fondo);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 3.1 Contenedor principal */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espaciado-md);
  position: relative;
}

/* 3.2 Contenedor fluido */
.container-fluid {
  width: 100%;
  padding: 0 var(--espaciado-md);
  margin: 0 auto;
}

/* 3.3 Secciones */
section {
  padding: var(--espaciado-xl) 0;
  position: relative;
  width: 100%;
}

/* 3.4 Imágenes responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3.5 Botones */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--border-radius-sm);
  transition: var(--transicion-rapida);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  color: white;
  background-color: var(--color-primario);
  border-color: var(--color-primario);
}

.btn-primary:hover {
  background-color: #12445c;
  border-color: #12445c;
}

/* 3.6 Utilidades de espaciado */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

.mt-1 { margin-top: var(--espaciado-xs) !important; }
.mb-1 { margin-bottom: var(--espaciado-xs) !important; }
.ml-1 { margin-left: var(--espaciado-xs) !important; }
.mr-1 { margin-right: var(--espaciado-xs) !important; }
.mx-1 { margin-left: var(--espaciado-xs) !important; margin-right: var(--espaciado-xs) !important; }
.my-1 { margin-top: var(--espaciado-xs) !important; margin-bottom: var(--espaciado-xs) !important; }

/* ... (más utilidades de espaciado según sea necesario) ... */

/* 3.7 Utilidades de texto */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-bold { font-weight: 700 !important; }
.font-italic { font-style: italic !important; }

/* 4. Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: var(--line-height-sm);
  margin-top: 0;
  margin-bottom: var(--espaciado-sm);
  font-weight: 700;
  color: var(--color-primario);
}

h1 { 
  font-size: 2rem; 
  margin-bottom: var(--espaciado-md);
}

h2 { 
  font-size: 1.75rem; 
  margin-bottom: var(--espaciado-sm);
}

h3 { 
  font-size: 1.5rem; 
  margin-bottom: var(--espaciado-sm);
}

h4 { 
  font-size: 1.25rem; 
  margin-bottom: var(--espaciado-xs);
}

h5 { 
  font-size: 1.125rem; 
  margin-bottom: var(--espaciado-xs);
}

h6 { 
  font-size: 1rem; 
  margin-bottom: var(--espaciado-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 4.1 Tipografía responsiva */
@media (min-width: 576px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
}

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
}

@media (min-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2rem; }
}

p {
  margin-top: 0;
  margin-bottom: var(--espaciado-md);
  line-height: var(--line-height-lg);
  font-size: var(--font-size-base);
  color: var(--color-texto);
}

/* Párrafos grandes */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--espaciado-md);
}

/* Texto pequeño */
.small {
  font-size: var(--font-size-sm);
  color: var(--color-texto-claro);
}

/* Texto destacado */
.highlight {
  background-color: #fff9c4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}

/* 4.2 Enlaces */
a {
  color: var(--color-primario);
  text-decoration: none;
  transition: var(--transicion-rapida);
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: var(--color-secundario);
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/* 5. Enlaces */
a {
  color: var(--color-primario);
  text-decoration: none;
  transition: var(--transicion-rapida);
}

a:hover {
  color: var(--color-secundario);
  text-decoration: none;
}

/* 6. Listas */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 7. Imágenes y Medios */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 8. Formularios */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* 9. Utilidades */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 10. Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* 11. Clases de utilidad */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.font-weight-bold { font-weight: 700; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* 12. Estilos para el Hero (ajustar según necesidades) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* 13. Media Queries Base */
@media (max-width: 992px) {
  html { font-size: 15px; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  html { font-size: 13px; }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* 14. Estilos de impresión */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a,
  a:visited {
    text-decoration: underline;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
  }
  
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  
  thead {
    display: table-header-group;
  }
  
  tr,
  img {
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
  }
  
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* 15. Estilos de accesibilidad */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* 16. Estilos para el modo oscuro (opcional) */
@media (prefers-color-scheme: dark) {
  :root {
    --color-primario: #4a90e2;
    --color-texto: #f5f5f5;
    --color-fondo: #121212;
    --color-fondo-secundario: #1e1e1e;
    --color-borde: #333333;
  }
  
  body {
    color-scheme: dark;
  }
}
