/* ===== ARCHIVO BASE DE ESTILOS GLOBALES - ENTRE COLEGAS ===== */
/* Este archivo contiene todos los estilos base y variables para toda la plataforma */

/* ===== VARIABLES CSS UNIFICADAS ===== */
:root {
    /* Colores principales */
    --primary: #3498db;
    --primary-hover: #2980b9;
    --primary-dark: #2563eb;
    --primary-light: #81b3f0;
    --secondary: #2ecc71;
    --secondary-dark: #27ae60;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #dc3545;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Escala de grises */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Colores de texto */
    --dark-text: #2c3e50;
    --medium-text: #495057;
    --light-text: #6c757d;
    
    /* Fondos */
    --background-light: #f8fafc;
    --background-accent: #f0f7ff;
    --white: #ffffff;
    --gray-light: #e2e8f0;
    
    /* Tipografía */
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-mono: 'Fira Code', 'Roboto Mono', monospace;
    
    /* Tamaños de texto */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Espaciado */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Bordes y sombras */
    --border-radius-small: 6px;
    --border-radius-medium: 12px;
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transiciones */
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Breakpoints */
    --screen-sm: 640px;
    --screen-md: 768px;
    --screen-lg: 1024px;
    --screen-xl: 1280px;
    --screen-2xl: 1536px;
}

/* ===== RESET Y ESTILOS BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--medium-text);
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-text);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
    color: var(--medium-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

a:hover {
    color: var(--primary);
}

ul, ol {
    list-style: none;
    margin-bottom: var(--space-4);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== COMPONENTES BASE ===== */

/* Contenedores */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Encabezados de sección */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    padding: 0 var(--space-4);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-4);
    font-weight: 800;
}

.section-header p {
    color: var(--light-text);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.titulo-nivel-principal {
    color: var(--primary-dark);
    font-size: var(--text-4xl);
    margin-top: var(--space-16);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-12);
}



/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-medium);
    font-size: var(--text-base);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    text-decoration: none;
    gap: var(--space-2);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--medium-text);
    border: none;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--dark-text);
}

/* Tamaños de botones */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-lg {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition-medium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3) var(--space-6);
}

.header-brand .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-brand .logo {
    height: 40px;
    width: auto;
    margin-right: var(--space-3);
}

.header-brand .brand-name {
    color: var(--dark-text);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navegación */
.main-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-6);
}

.main-nav .nav-link {
    color: var(--medium-text);
    font-weight: 600;
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    position: relative;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary);
}

.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.header-actions {
    display: flex;
    gap: var(--space-3);
}

/* Footer */
.site-footer {
    background-color: var(--gray-800);
    color: var(--white);
    padding: var(--space-12) 0 var(--space-8);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.footer-title {
    color: var(--primary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.footer-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.nav-title, .contact-title, .social-title {
    color: var(--primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-5);
    font-weight: 600;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: var(--space-2);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: var(--transition-medium);
}

.nav-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.social-icons {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.social-icon {
    color: var(--white);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: var(--space-5) 0;
}

.footer-bottom {
    padding: var(--space-3) 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.copyright {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin: 0;
}

/* ===== COMPONENTES ESPECÍFICOS ===== */

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    padding: var(--space-8);
    margin: var(--space-6) 0;
    transition: var(--transition-medium);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: var(--space-24) 8% var(--space-16);
    background: linear-gradient(135deg, #dbeafe 0%, var(--background-light) 100%);
    overflow: hidden;
}

.hero-content {
    flex: 1 1 50%;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: var(--space-5);
    line-height: 1.2;
    color: var(--dark-text);
    font-weight: 800;
}

.hero-title span {
    color: var(--primary-dark);
}

.hero-text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    color: var(--medium-text);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.hero-image-container {
    width: clamp(380px, 45vw, 720px);
    position: relative;
    border-radius: var(--space-6);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: inherit;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-xl);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.modal-content {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--text-2xl);
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
    line-height: 1;
    padding: 0 var(--space-2);
}

.modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: var(--space-8);
    background-color: var(--background-light);
    overflow-y: auto;
    flex-grow: 1;
}

.modal-footer {
    background-color: var(--background-light);
    border-top: none;
    padding: var(--space-6);
    display: flex;
    justify-content: center;
}

/* ===== UTILIDADES ===== */

/* Espaciado */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* Texto */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-muted { color: var(--light-text); }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* Bordes */
.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Sombras */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-12px); 
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.slide-in {
    animation: slideIn 0.4s ease-out;
}

/* ===== RESPONSIVIDAD ===== */
@media (max-width: 768px) {
    .main-container {
        padding: var(--space-6) var(--space-4);
    }
    
    .header-container {
        padding: var(--space-2) var(--space-4);
    }
    
    .main-nav .nav-list {
        gap: var(--space-4);
    }
    
    .btn {
        padding: var(--space-2) var(--space-6);
        font-size: var(--text-sm);
    }
    
    .section-header h2 {
        font-size: var(--text-2xl);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: var(--space-16) var(--space-4);
    }
    
    .hero-content {
        flex: 1 1 100%;
        max-width: none;
    }
    
    .hero-visual {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-brand, .footer-nav, .footer-contact, .footer-social {
        padding: 0;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .header-brand .brand-name {
        font-size: var(--text-lg);
    }
    
    .main-nav {
        display: none; /* Para móviles, necesitarás un menú hamburguesa */
    }
    
    .header-actions {
        gap: var(--space-2);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== ESTADOS DE CARGA ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* ===== ESTADOS DE BOTONES ===== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}