/* Variables de color */
:root {
    --bg-black: #0f1012;
    --card-gray: #1a1c1e;
    --accent-green: #2ecc71;
    --text-white: #ffffff;
    --text-muted: #8e8e93;
    --danger: #e74c3c;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    padding: 20px;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header-prof {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--card-gray);
    border-radius: 15px;
    margin-bottom: 25px;
}

.user-meta { display: flex; align-items: center; gap: 15px; }

.avatar-circle {
    width: 55px; height: 55px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-weight: bold; font-size: 1.4rem; color: #000;
}

.user-meta h3 { margin: 0; font-size: 1.2rem; }
.user-meta p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* Grid de Columnas */
.grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
}

.card {
    background: var(--card-gray);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-green);
    padding-left: 10px;
}

/* Mapa */
.map-box { 
    position: relative; 
    text-align: center; 
    background: #111;
    border-radius: 15px;
    padding: 20px;
}
.img-body { max-width: 100%; filter: brightness(0.8) invert(0.1); }

.dot {
    position: absolute;
    width: 14px; height: 14px;
    background: var(--danger);
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px var(--danger);
    transition: transform 0.3s;
}
.dot:hover { transform: scale(1.5); }

/* Formulario */
label { display: block; margin-bottom: 10px; font-size: 0.85rem; color: var(--text-muted); }
.slider { width: 100%; margin-bottom: 20px; }

.btn-green {
    width: 100%;
    padding: 15px;
    background: var(--accent-green);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}
.btn-green:hover { opacity: 0.9; }

.btn-logout {
    background: var(--danger);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Video Section */
.video-section iframe {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}