/* ============================================================
   RESPONSIVE DESIGN - OPTIMIZADO PARA TODOS LOS DISPOSITIVOS
   ============================================================ */

/* ============================================================
   MOBILE FIRST - Base para móviles
   ============================================================ */

/* Mejorar scroll horizontal en tablas para móviles */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.data-table {
    min-width: 800px; /* Evitar que la tabla se comprima demasiado */
}

/* ============================================================
   TABLETS Y MÓVILES HORIZONTALES (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    /* Dashboard grid a 2 columnas */
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Stats grid a 2 columnas */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Mensajes layout a 1 columna */
    .mensajes-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .mensajes-list {
        max-height: 400px;
    }
    
    /* Modal más pequeño */
    .modal-content {
        max-width: 90%;
        margin: 30px auto;
    }
    
    .modal-large {
        max-width: 95%;
    }
    
    /* Form rows en columna */
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        width: 100%;
    }
}

/* ============================================================
   TABLETS Y MÓVILES (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Root variables para móvil */
    :root {
        --sidebar-width: 280px;
        --header-height: 60px;
    }
    
    /* ========== SIDEBAR ========== */
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: var(--sidebar-width);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    /* Overlay para cerrar sidebar */
    body.sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    /* ========== MAIN CONTENT ========== */
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    /* ========== HEADER ========== */
    .header {
        height: var(--header-height);
        padding: 0 15px;
    }
    
    /* Botón hamburguesa para abrir menú */
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-primary);
        cursor: pointer;
        padding: 5px;
        margin-right: 15px;
    }
    
    .user-info {
        font-size: 13px;
    }
    
    .user-name {
        display: none; /* Ocultar nombre en móvil */
    }
    
    /* ========== DASHBOARD ========== */
    .dashboard-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    /* ========== SECTION HEADER ========== */
    .section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .filter-group {
        flex-direction: column;
        max-width: 100%;
        gap: 8px;
    }
    
    .filter-group select,
    .filter-group input {
        width: 100%;
        font-size: 14px;
    }
    
    /* ========== BUTTONS ========== */
    .btn {
        padding: 10px 16px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-sm {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    /* ========== TABLES ========== */
    .table-container {
        border-radius: 6px;
    }
    
    .data-table {
        font-size: 13px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    /* Ocultar columnas menos importantes en móvil */
    .data-table .hide-mobile {
        display: none;
    }
    
    /* ========== MODALS ========== */
    .modal-content {
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-large {
        max-width: 98%;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    /* ========== FORMS ========== */
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* ========== BADGES ========== */
    .badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* ========== TABS ========== */
    .tabs-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        margin-bottom: 15px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* ========== MENSAJES ========== */
    .mensaje-card {
        padding: 12px;
    }
    
    .mensaje-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    /* ========== ASISTENCIAS ========== */
    .asistencia-card {
        padding: 12px;
    }
    
    .asistencia-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .asistencia-actions .btn {
        width: 100%;
    }
    
    /* ========== EVALUACIONES ========== */
    .permisos-section {
        padding: 12px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ============================================================
   MÓVILES PEQUEÑOS (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    /* ========== GENERAL ========== */
    body {
        font-size: 14px;
    }
    
    /* ========== HEADER ========== */
    .header {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 16px;
    }
    
    .logo i {
        font-size: 20px;
    }
    
    /* ========== STATS ========== */
    .stat-card {
        padding: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* ========== SECTION HEADER ========== */
    .section-header h2 {
        font-size: 18px;
    }
    
    /* ========== TABLES ========== */
    .data-table {
        font-size: 12px;
        min-width: 700px;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px 6px;
    }
    
    /* ========== MODALS ========== */
    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-header h2 {
        font-size: 16px;
    }
    
    /* ========== BUTTONS ========== */
    .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .btn i {
        font-size: 14px;
    }
    
    /* ========== FORMS ========== */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 8px;
    }
    
    /* ========== BADGES ========== */
    .badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    /* ========== SIDEBAR ========== */
    .sidebar {
        width: 260px;
    }
    
    .nav-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* ============================================================
   LANDSCAPE MODE - Móviles en horizontal
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .modal-content {
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .sidebar {
        overflow-y: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================
   TABLETS ESPECÍFICAS (768px - 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar {
        transform: translateX(0);
        position: relative;
    }
    
    .main-content {
        margin-left: var(--sidebar-width);
    }
    
    .menu-toggle {
        display: none !important;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   DESKTOP GRANDE (min-width: 1400px)
   ============================================================ */
@media (min-width: 1400px) {
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .modal-content {
        max-width: 600px;
    }
    
    .modal-large {
        max-width: 1000px;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .sidebar,
    .header,
    .action-buttons,
    .btn,
    .filter-group {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
        padding: 0;
    }
    
    .data-table {
        font-size: 10px;
    }
    
    .section-header h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

/* ============================================================
   UTILITIES PARA RESPONSIVE
   ============================================================ */

/* Mostrar/ocultar según dispositivo */
.show-mobile { display: none !important; }
.hide-mobile { display: block !important; }

@media (max-width: 768px) {
    .show-mobile { display: block !important; }
    .hide-mobile { display: none !important; }
}

/* Scroll suave */
* {
    -webkit-overflow-scrolling: touch;
}

/* Mejorar tap targets para móvil */
@media (max-width: 768px) {
    button,
    a,
    .btn,
    .nav-item {
        min-height: 44px; /* Tamaño mínimo táctil recomendado */
        min-width: 44px;
    }
}

/* Prevenir zoom en inputs en iOS */
@media (max-width: 768px) {
    input,
    select,
    textarea {
        font-size: 16px !important; /* iOS no hace zoom si es >= 16px */
    }
}
