/* public/assets/css/style.css */

:root {
    /* Colores Claro */
    --bg-color: #f4f6f9;
    --card-bg: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    
    /* Identidad Telepacífico */
    --primary-color: #0056b3; /* Ajustar según brand book */
    --secondary-color: #00a8cc;
    --accent-color: #ff6b6b;

    /* Componentes */
    --sidebar-bg: #1a1e23;
    --sidebar-text: #adb5bd;
    --sidebar-active: #ffffff;
    --header-bg: #ffffff;
    
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    /* Colores Oscuro */
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
    
    --header-bg: #1e1e1e;
    --sidebar-bg: #0d0d0d;
    
    --shadow: 0 4px 6px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    min-height: 100vh;
    transition: var(--transition);
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar-header {
    padding: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sidebar-active);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu {
    list-style: none;
    margin-top: 20px;
}

.nav-item {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.nav-item:hover, .nav-item.active {
    background-color: rgba(255,255,255,0.05);
    color: var(--sidebar-active);
    border-left: 4px solid var(--primary-color);
}

/* Main Content */
.main-wrapper {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.top-header {
    height: 70px;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: var(--shadow);
    z-index: 10;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Content Area */
.content-area {
    padding: 30px;
    flex: 1;
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Grillas */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Tipografía */
h1, h2, h3 {
    color: var(--text-primary);
}

/* Formatos KPIs */
.kpi-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .main-wrapper {
        margin-left: 0;
    }
}
