/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
}

/* ----- Header Left ----- */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    position:relative;
    overflow:hidden;
    width: 40px;
    height: 30px;
    background: #1abc9c;
    border-radius: 4px;
}
/* ----- Video del logo ----- */
.logo-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo {
    box-shadow: inset 0 0 6px rgba(255,255,255,0.15);
}


@media (max-width: 768px) {
    .header {
        height: 50px;
    }



    .logo {
        width: 40px;
        height: 30px;
    }
}


.header-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-title-h1 {
    font-size: 14px;
    font-weight: 600;
}

.header-title-h4 {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    text-align: center;
}

/* ----- Header Center ----- */
.header-center {
    flex: 1;
}

/* ----- Header Right ----- */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-link {
    font-size: 12px;
    cursor: pointer;
    position: relative;
}

.header-link:hover {
    opacity: 0.7;
}

/* ----- Botón Header ----- */
.header-button {
    padding: 5px 14px;
    border-radius: 20px;
    background: #1abc9c;
    color: #000;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
}

.header-button:hover {
    background: #16a085;
}

/* ===================== MODAL TOPLINE ===================== */
.topline-modal {
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    background: rgba(20,20,20,0.95);
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 6px;
}

.topline-option {
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
}

.topline-option:hover {
    background: rgba(255,255,255,0.1);
}
