/* PWA y Optimizaciones de Rendimiento para CESCO */
/* Versión: 1.0.0 */
/* Fecha: 2025-01-24 */

/* ======================================================================
   ESTILOS PWA
   ====================================================================== */

/* Ocultar elementos cuando la app está instalada como PWA */
@media (display-mode: standalone) {
    .hide-in-pwa {
        display: none !important;
    }
    
    /* Ajustar padding superior para compensar la ausencia de barra de navegador */
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Estilos específicos para PWA */
    .pwa-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Botón de instalación PWA */
#install-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

#install-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.4);
}

#install-button::before {
    content: "📱";
    margin-right: 8px;
}

/* ======================================================================
   OPTIMIZACIONES DE RENDIMIENTO
   ====================================================================== */

/* Lazy loading para imágenes */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Placeholder para imágenes que se están cargando */
.img-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Optimización de fuentes */
/* La propiedad font-display: swap debe usarse dentro de @font-face */

/* Reducir layout shift */
.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

/* ======================================================================
   ESTADOS DE CONEXIÓN
   ====================================================================== */

/* Estilos para modo offline */
body.offline {
    filter: grayscale(0.3);
}





/* ======================================================================
   MEJORAS DE ACCESIBILIDAD
   ====================================================================== */

/* Reducir movimiento para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #2d2d2d;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --border-color: #404040;
    }
    
    .dark-mode-auto {
        background-color: var(--bg-primary);
        color: var(--text-primary);
    }
}

/* Alto contraste */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid currentColor;
    }
}

/* ======================================================================
   OPTIMIZACIONES ESPECÍFICAS PARA MÓVILES
   ====================================================================== */

/* Mejorar el rendimiento en dispositivos táctiles */
.touch-optimized {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Botones más grandes para dispositivos táctiles */
@media (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
}

/* Optimización para pantallas pequeñas */
@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .text-responsive {
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .heading-responsive {
        font-size: clamp(24px, 6vw, 32px);
    }
}

/* ======================================================================
   ANIMACIONES OPTIMIZADAS
   ====================================================================== */

/* Usar transform y opacity para animaciones suaves */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animación de carga */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1e40af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ======================================================================
   UTILIDADES DE RENDIMIENTO
   ====================================================================== */

/* Forzar aceleración por hardware */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimizar repaint */
.no-repaint {
    will-change: auto;
}

/* Contenido crítico above the fold */
.critical-content {
    contain: layout style paint;
}

/* Lazy content below the fold */
.lazy-content {
    content-visibility: auto;
    contain-intrinsic-size: 200px;
}

/* ======================================================================
   PRINT STYLES
   ====================================================================== */

@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    .page-break {
        page-break-before: always;
    }
}

/* ======================================================================
   VARIABLES CSS PERSONALIZADAS
   ====================================================================== */

:root {
    /* Colores CESCO */
    --cesco-blue: #1e2447;
    --cesco-yellow: #f3b115;
    --cesco-teal: #00a99d;
    --cesco-orange: #f17300;
    
    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Tipografía */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Bordes */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}